This is a special value that a variable of type pthread_mutex_t
may be statically initialized to as shown below:
pthread_mutex_t my_mutex = PTHREAD_MUTEX_INITIALIZER;
This indicates that my_mutex
will be automatically initialized
by an implicit call to pthread_mutex_init
the first time
the mutex is used.
Note that the mutex will be initialized with default attributes.
Copyright © 1988-2004 OAR Corporation