![]() |
![]() |
![]() |
Attempt to lock mutex
#include <pthread.h> int pthread_mutex_trylock( pthread_mutex_t* mutex );
libc
The pthread_mutex_trylock() function attempts to lock the mutex mutex, but doesn't block the calling thread if the mutex is already locked.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
pthread_mutex_lock(), pthread_mutex_unlock()
![]() |
![]() |
![]() |