ROM Comm / Mbed 2 deprecated espar_mini_control_CAN

Dependencies:   mbed mbed-STM32F103C8T6

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers wicedmutex.h Source File

wicedmutex.h

00001 #ifndef __WICED_MUTEX_H
00002 #define __WICED_MUTEX_H
00003 
00004 struct wiced_mutex 
00005 {
00006     int x;
00007 };
00008 
00009 typedef struct wiced_mutex wiced_mutex_t;
00010     
00011 
00012 void wiced_rtos_init_mutex(wiced_mutex_t* pointer);
00013 void wiced_rtos_lock_mutex(wiced_mutex_t* pointer);
00014 void wiced_rtos_unlock_mutex(wiced_mutex_t* pointer);
00015 #endif