FreeRTOS
SemaphoreData
is only used within FreeRTOS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
Raspberry Pi Pico SDK and Examples
FreeRTOS
SemaphoreData
SemaphoreData struct
Syntax
Show:
Summary
Declaration
from
queue.c:74
typedef
struct
SemaphoreData
{
TaskHandle_t
xMutexHolder
;
UBaseType_t
uxRecursiveCallCount
;
}
SemaphoreData_t
;
Fields
Field
Declared as
Description
SemaphoreData::xMutexHolder
TaskHandle_t
The handle of the task that holds the mutex.
SemaphoreData::uxRecursiveCallCount
UBaseType_t
Maintains a count of the number of times a recursive mutex has been recursively 'taken' when the structure is used as a mutex.
Examples
References
from
examples
Code
Location
Referrer
typedef
struct
SemaphoreData
queue.c:74
}
SemaphoreData_t
;
queue.c:78
SemaphoreData_t
SemaphoreData_t
xSemaphore
;
/**< Data required exclusively when this structure is used as a semaphore. */
queue.c:111
QueueDefinition::
::xSemaphore
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Instance
Scope
Location
Project
QueueDefinition::
::xSemaphore
queue.c:111
Lifecycle
from
examples
All items filtered out
All items filtered out