from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites:gentoo.linuxhowtos.org



Last additions:
using iotop to find disk usage hogs

using iotop to find disk usage hogs

words:

887

views:

209580

userrating:


May 25th. 2007:
Words

486

Views

258587

why adblockers are bad


Workaround and fixes for the current Core Dump Handling vulnerability affected kernels

Workaround and fixes for the current Core Dump Handling vulnerability affected kernels

words:

161

views:

149876

userrating:


April, 26th. 2006:

Druckversion
You are here: manpages





pthread_spin_lock

Section: C Library Functions (3)
Updated: 202-0-08
Index Return to Main Contents
 

NAME

pthread_spin_lock, pthread_spin_trylock, pthread_spin_unlock - lock and unlock a spin lock  

LIBRARY

POSIX threads library (libpthread,~-lpthread)  

SYNOPSIS

#include <pthread.h>
int pthread_spin_lock(pthread_spinlock_t *lock);
int pthread_spin_trylock(pthread_spinlock_t *lock);
int pthread_spin_unlock(pthread_spinlock_t *lock);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)): pthread_spin_lock(), pthread_spin_trylock():
    _POSIX_C_SOURCE >= 200112L
 

DESCRIPTION

The pthread_spin_lock() function locks the spin lock referred to by lock. If the spin lock is currently unlocked, the calling thread acquires the lock immediately. If the spin lock is currently locked by another thread, the calling thread spins, testing the lock until it becomes available, at which point the calling thread acquires the lock. Calling pthread_spin_lock() on a lock that is already held by the caller or a lock that has not been initialized with pthread_spin_init(3) results in undefined behavior. The pthread_spin_trylock() function is like pthread_spin_lock(), except that if the spin lock referred to by lock is currently locked, then, instead of spinning, the call returns immediately with the error EBUSY. The pthread_spin_unlock() function unlocks the spin lock referred to lock. If any threads are spinning on the lock, one of those threads will then acquire the lock. Calling pthread_spin_unlock() on a lock that is not held by the caller results in undefined behavior.  

RETURN VALUE

On success, these functions return zero. On failure, they return an error number.  

ERRORS

pthread_spin_lock() may fail with the following errors:
EDEADLOCK
The system detected a deadlock condition. pthread_spin_trylock() fails with the following errors:
EBUSY
The spin lock is currently locked by another thread.
 

STANDARDS

POSIX.-2008.  

HISTORY

glibc 2.2. POSIX.-2001.  

CAVEATS

Applying any of the functions described on this page to an uninitialized spin lock results in undefined behavior. Carefully read NOTES in pthread_spin_init(3).  

SEE ALSO

pthread_spin_destroy(3), pthread_spin_init(3), pthreads(7)


 

Index

NAME
LIBRARY
SYNOPSIS
DESCRIPTION
RETURN VALUE
ERRORS
STANDARDS
HISTORY
CAVEATS
SEE ALSO





Support us on Content Nation
rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 11.3 ms