Query: pthread_spin_unlock
OS: opensolaris
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
pthread_spin_unlock(3C) Standard C Library Functions pthread_spin_unlock(3C)NAMEpthread_spin_unlock - unlock a spin lock objectSYNOPSIScc -mt [ flag... ] file... [ library... ] #include <pthread.h> int pthread_spin_unlock(pthread_spinlock_t *lock);DESCRIPTIONThe pthread_spin_unlock() function releases the spin lock referenced by lock which was locked with the pthread_spin_lock(3C) or pthread_spin_trylock(3C) functions. The results are undefined if the lock is not held by the calling thread. If there are threads spinning on the lock when pthread_spin_unlock() is called, the lock becomes available and an unspecified spinning thread acquires the lock. The results are undefined if this function is called with an uninitialized thread spin lock.RETURN VALUESUpon successful completion, the pthread_spin_unlock() function returns 0. Otherwise, an error number shall be returned to indicate the error.ERRORSThe pthread_spin_unlock() function will fail if: EINVAL An invalid argument was specified. EPERM The calling thread does not hold the lock.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+SEE ALSOpthread_spin_destroy(3C), pthread_spin_lock(3C), attributes(5), standards(5) SunOS 5.11 30 Jan 2004 pthread_spin_unlock(3C)
Related Man Pages |
---|
pthread_spin_lock(3c) - opensolaris |
pthread_spin_unlock(3) - linux |
pthread_spin_unlock(3p) - suse |
pthread_spin_trylock(3c) - sunos |
pthread_spin_destroy(3c) - opensolaris |
Similar Topics in the Unix Linux Community |
---|
API C MYSQL vs lock table ??? |
Opensuse mt command |
Problem with screen lock |