RTEMS
5.0.0
|
Initialize a Mutex. More...
#include <rtems/posix/muteximpl.h>
#include <rtems/posix/posixapi.h>
#include <rtems/posix/priorityimpl.h>
#include <rtems/score/schedulerimpl.h>
#include <limits.h>
Functions | |
RTEMS_STATIC_ASSERT (offsetof(POSIX_Mutex_Control, flags)==offsetof(pthread_mutex_t, _flags), POSIX_MUTEX_CONTROL_FLAGS) | |
RTEMS_STATIC_ASSERT (offsetof(POSIX_Mutex_Control, Recursive)==offsetof(pthread_mutex_t, _Recursive), POSIX_MUTEX_CONTROL_RECURSIVE) | |
RTEMS_STATIC_ASSERT (offsetof(POSIX_Mutex_Control, Priority_ceiling)==offsetof(pthread_mutex_t, _Priority_ceiling), POSIX_MUTEX_CONTROL_PRIORITY_CEILING) | |
RTEMS_STATIC_ASSERT (offsetof(POSIX_Mutex_Control, scheduler)==offsetof(pthread_mutex_t, _scheduler), POSIX_MUTEX_CONTROL_SCHEDULER) | |
RTEMS_STATIC_ASSERT (sizeof(POSIX_Mutex_Control)==sizeof(pthread_mutex_t), POSIX_MUTEX_CONTROL_SIZE) | |
int | pthread_mutex_init (pthread_mutex_t *mutex, const pthread_mutexattr_t *attr) |
Variables | |
const pthread_mutexattr_t | _POSIX_Mutex_Default_attributes |
Initialize a Mutex.
int pthread_mutex_init | ( | pthread_mutex_t * | mutex, |
const pthread_mutexattr_t * | attr | ||
) |
11.3.2 Initializing and Destroying a Mutex, P1003.1c/Draft 10, p. 87
NOTE: XXX Could be optimized so all the attribute error checking is not performed when attr is NULL.
const pthread_mutexattr_t _POSIX_Mutex_Default_attributes |
The default mutex attributes structure.