Processor: Gauss c6657
currently I am using SYSBIOS: 6.33.6.50
I am trying to insert a wrapper for some application code with VxWorks/Linux calls.
For semaphore functions:
semCCreate( int options, int initialCount ) |
semBCreate( int options, int initialState ) |
semMCreate( int options ) |
1. semCcreate counting semaphore, but how do we define its options in semaphore_create function?
(//These options are SEM_Q_PRIORITY (0x1) and SEM_Q_FIFO (0x0), respectively)
2. similarly semBcreate() how do we define options.
3. semMCreate() which is a mutex semaphore. What is the equivalent semaphore API which creates a mutex semaphore.
Regards,
Hari