[Previous] [Contents] [Index] [Next]

Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

pthread_mutex_trylock()

Attempt to lock a mutex

Synopsis:

#include <pthread.h>

int pthread_mutex_trylock( pthread_mutex_t* mutex );

Arguments:

mutex
A pointer to the pthread_mutex_t object that you want to try to lock.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The pthread_mutex_trylock() function attempts to lock the mutex mutex, but doesn't block the calling thread if the mutex is already locked.

Returns:

EOK
Success.
EAGAIN
Insufficient resources available to lock the mutex.
EBUSY
The mutex was already locked.
EINVAL
Invalid mutex mutex.

Classification:

POSIX 1003.1 THR

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

pthread_mutex_lock(), pthread_mutex_unlock()


[Previous] [Contents] [Index] [Next]