summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasad Konnur2019-09-24 03:57:59 -0500
committerPrasad Konnur2019-09-25 04:10:41 -0500
commit8ed31c2d8188f2a7f117866e6778f6ebf48fdfea (patch)
tree630a9ee7de8157fbba8eaf75b4d180f47769e412 /src/tirtos/EventP_tirtos.c
parentc9676c773ae6034a7a4af6caf451e58dfa2b442a (diff)
downloadosal-69406a1131d84fb2d730939a07e491bb14bb2320.tar.gz
osal-69406a1131d84fb2d730939a07e491bb14bb2320.tar.xz
osal-69406a1131d84fb2d730939a07e491bb14bb2320.zip
Signed-off-by: Prasad Konnur <prasadkonnur@ti.com>
Diffstat (limited to 'src/tirtos/EventP_tirtos.c')
-rwxr-xr-x[-rw-r--r--]src/tirtos/EventP_tirtos.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tirtos/EventP_tirtos.c b/src/tirtos/EventP_tirtos.c
index 2fac64a..d4c5bfd 100644..100755
--- a/src/tirtos/EventP_tirtos.c
+++ b/src/tirtos/EventP_tirtos.c
@@ -35,6 +35,7 @@
35#include <ti/sysbios/knl/Event.h> 35#include <ti/sysbios/knl/Event.h>
36#include "EventP.h" 36#include "EventP.h"
37#include <xdc/runtime/Memory.h> 37#include <xdc/runtime/Memory.h>
38#include <xdc/runtime/Error.h>
38#include <ti/osal/src/tirtos/tirtos_config.h> 39#include <ti/osal/src/tirtos/tirtos_config.h>
39 40
40/* 41/*
@@ -47,7 +48,7 @@ EventP_Handle EventP_create(EventP_Params *params)
47 48
48 Event_Params_init(&eventParams); 49 Event_Params_init(&eventParams);
49 50
50 eventHandle = Event_create(&eventParams, NULL_PTR); 51 eventHandle = Event_create(&eventParams, (Error_Block *) NULL_PTR);
51 52
52 return ((EventP_Handle)eventHandle); 53 return ((EventP_Handle)eventHandle);
53} 54}