*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: pthread_mutex_trylock | Section: 3 | Source: FreeBSD | File: pthread_mutex_trylock.3.gz
PTHREAD_MUTEX_TRYLOCK(3) FreeBSD Library Functions Manual NAME pthread_mutex_trylock - attempt to lock a mutex without blocking LIBRARY POSIX Threads Library (libpthread, -lpthread) SYNOPSIS #include <pthread.h> int pthread_mutex_trylock(pthread_mutex_t *mutex); DESCRIPTION The pthread_mutex_trylock() function locks mutex. If the mutex is already locked, pthread_mutex_trylock() will not block waiting for the mutex, but will return an error condition. RETURN VALUES If successful, pthread_mutex_trylock() will return zero, otherwise an error number will be returned to indicate the error. ERRORS The pthread_mutex_trylock() function will fail if: [EINVAL] The value specified by mutex is invalid. [EBUSY] Mutex is already locked. [EOWNERDEAD] The argument mutex points to a robust mutex and the process containing the previous owning thread terminated while holding the mutex lock. The lock was granted to the caller and it is up to the new owner to make the state consistent. [ENOTRECOVERABLE] The state protected by the mutex is not recoverable. SEE ALSO pthread_mutex_consistent(3), pthread_mutex_destroy(3), pthread_mutex_init(3), pthread_mutex_lock(3), pthread_mutex_unlock(3) STANDARDS The pthread_mutex_trylock() function conforms to ISO/IEC 9945-1:1996 ("POSIX.1"). FreeBSD 14.1-RELEASE-p8 August 7, 2019 FreeBSD 14.1-RELEASE-p8

Navigation Options