aboutsummaryrefslogtreecommitdiff
path: root/cc3200/simplelink/oslib/osi.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc3200/simplelink/oslib/osi.h')
-rw-r--r--cc3200/simplelink/oslib/osi.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cc3200/simplelink/oslib/osi.h b/cc3200/simplelink/oslib/osi.h
index cf2574b1e..11fe61bb6 100644
--- a/cc3200/simplelink/oslib/osi.h
+++ b/cc3200/simplelink/oslib/osi.h
@@ -538,26 +538,26 @@ void osi_Sleep(unsigned int MilliSecs);
/*!
\brief This function used to disable the tasks
\param - void
- \return - Key with the suspended tasks
+ \return - void
\note
\warning
*/
-unsigned long osi_TaskDisable(void);
+void osi_TaskDisable(void);
/*!
\brief This function used to enable all tasks
- \param unsigned long
+ \param - void
\return - void
\note
\warning
*/
-void osi_TaskEnable(unsigned long);
+void osi_TaskEnable(void);
+
/*!
\brief structure definition for simple link spawn message
\note On each porting or platform the type could be whatever is needed - integer, pointer to structure etc.
*/
-
typedef struct
{
P_OSI_SPAWN_ENTRY pEntry;