home *** CD-ROM | disk | FTP | other *** search
-
- Intro.3synch.html:
- Title = Intro(3synch)
- Version = 1.0
- Name = Intro - introduction to synchronization routines in the Threads Library
- IndexEntry = intro - introduction to synchronization routines in the Threads Library
- SubName = Synchronization - introduction to synchronization routines in the Threads Library
- SubName = intro - introduction to synchronization routines in the Threads Library
- SubName = synch - introduction to synchronization routines in the Threads Library
-
- barrier.3synch.html:
- Title = barrier(3synch)
- Version = 1.0
- Name = barrier: barrier_init, barrier_wait, barrier_destroy, _barrier_spin_init, _barrier_spin, _barrier_spin_destroy - overview of barrier synchronization routines
-
- barrier_destroy.3synch.html:
- Title = barrier_destroy(3synch)
- Version = 1.0
- Name = barrier_destroy - destroy a blocking barrier
-
- barrier_init.3synch.html:
- Title = barrier_init(3synch)
- Version = 1.0
- Name = barrier_init - initialize a blocking barrier
-
- _barrier_spin.3synch.html:
- Title = _barrier_spin(3synch)
- Version = 1.0
- Name = _barrier_spin - spin-wait at a barrier
-
- _barrier_spin_destroy.3synch.html:
- Title = _barrier_spin_destroy(3synch)
- Version = 1.0
- Name = _barrier_spin_destroy - destroy a spin type barrier
-
- _barrier_spin_init.3synch.html:
- Title = _barrier_spin_init(3synch)
- Version = 1.0
- Name = _barrier_spin_init - initialize a spinning barrier
-
- barrier_wait.3synch.html:
- Title = barrier_wait(3synch)
- Version = 1.0
- Name = barrier_wait - wait at a blocking barrier
-
- cond_broadcast.3synch.html:
- Title = cond_broadcast(3synch)
- Version = 1.0
- Name = cond_broadcast - broadcast a wake-up call to all threads waiting on a condition variable
-
- cond_destroy.3synch.html:
- Title = cond_destroy(3synch)
- Version = 1.0
- Name = cond_destroy - destroy a condition variable
-
- cond_init.3synch.html:
- Title = cond_init(3synch)
- Version = 1.0
- Name = cond_init - initialize a condition variable
-
- condition.3synch.html:
- Title = condition(3synch)
- Version = 1.0
- Name = condition: cond_init, cond_signal, cond_broadcast, cond_wait, cond_timedwait, cond_destroy - overview of condition variable routines
-
- cond_signal.3synch.html:
- Title = cond_signal(3synch)
- Version = 1.0
- Name = cond_signal - wake up a single thread waiting on a condition variable
-
- cond_timedwait.3synch.html:
- Title = cond_timedwait(3synch)
- Version = 1.0
- Name = cond_timedwait - wait on a condition variable for a limited time
-
- cond_wait.3synch.html:
- Title = cond_wait(3synch)
- Version = 1.0
- Name = cond_wait - wait on a condition variable
-
- mutex.3synch.html:
- Title = mutex(3synch)
- Version = 1.0
- Name = mutex: mutex_init, mutex_lock, mutex_trylock, mutex_unlock, mutex_destroy - overview of mutual exclusion lock routines
-
- mutex_destroy.3synch.html:
- Title = mutex_destroy(3synch)
- Version = 1.0
- Name = mutex_destroy - destroy a mutex
-
- mutex_init.3synch.html:
- Title = mutex_init(3synch)
- Version = 1.0
- Name = mutex_init - initialize a mutex
-
- mutex_lock.3synch.html:
- Title = mutex_lock(3synch)
- Version = 1.0
- Name = mutex_lock - lock a mutex
-
- mutex_trylock.3synch.html:
- Title = mutex_trylock(3synch)
- Version = 1.0
- Name = mutex_trylock - conditionally lock a mutex
-
- mutex_unlock.3synch.html:
- Title = mutex_unlock(3synch)
- Version = 1.0
- Name = mutex_unlock - unlock a mutex
-
- rmutex.3synch.html:
- Title = rmutex(3synch)
- Version = 1.0
- Name = rmutex: rmutex_init, rmutex_lock, rmutex_trylock, rmutex_unlock, rmutex_destroy - overview of mutual exclusion lock routines
-
- rmutex_destroy.3synch.html:
- Title = rmutex_destroy(3synch)
- Version = 1.0
- Name = rmutex_destroy - destroy a recursive mutex
-
- rmutex_init.3synch.html:
- Title = rmutex_init(3synch)
- Version = 1.0
- Name = rmutex_init - initialize a recursive mutex
-
- rmutex_lock.3synch.html:
- Title = rmutex_lock(3synch)
- Version = 1.0
- Name = rmutex_lock - lock a recursive mutex
-
- rmutex_trylock.3synch.html:
- Title = rmutex_trylock(3synch)
- Version = 1.0
- Name = rmutex_trylock - conditionally lock a recursive mutex
-
- rmutex_unlock.3synch.html:
- Title = rmutex_unlock(3synch)
- Version = 1.0
- Name = rmutex_unlock - unlock a recursive mutex
-
- rwlock.3synch.html:
- Title = rwlock(3synch)
- Version = 1.0
- Name = rwlock: rwlock_init, rw_rdlock, rw_wrlock, rw_tryrdlock, rw_trywrlock, rw_unlock, rwlock_destroy, - overview of reader-writer lock routines
-
- rwlock_destroy.3synch.html:
- Title = rwlock_destroy(3synch)
- Version = 1.0
- Name = rwlock_destroy - destroy a reader-writer lock
-
- rwlock_init.3synch.html:
- Title = rwlock_init(3synch)
- Version = 1.0
- Name = rwlock_init - initialize a reader-writer lock
-
- rw_rdlock.3synch.html:
- Title = rw_rdlock(3synch)
- Version = 1.0
- Name = rw_rdlock - acquire a reader-writer lock in read mode.
-
- rw_tryrdlock.3synch.html:
- Title = rw_tryrdlock(3synch)
- Version = 1.0
- Name = rw_tryrdlock - conditionally acquire a reader-writer lock in read mode
-
- rw_trywrlock.3synch.html:
- Title = rw_trywrlock(3synch)
- Version = 1.0
- Name = rw_trywrlock - conditionally acquire a reader-writer lock in write mode
-
- rw_unlock.3synch.html:
- Title = rw_unlock(3synch)
- Version = 1.0
- Name = rw_unlock - release a reader-writer lock
-
- rw_wrlock.3synch.html:
- Title = rw_wrlock(3synch)
- Version = 1.0
- Name = rw_wrlock - acquire a reader-writer lock in write mode
-
- sema_destroy.3synch.html:
- Title = sema_destroy(3synch)
- Version = 1.0
- Name = sema_destroy - destroy a semaphore
-
- sema_init.3synch.html:
- Title = sema_init(3synch)
- Version = 1.0
- Name = sema_init - initialize a semaphore
-
- semaphore.3synch.html:
- Title = semaphore(3synch)
- Version = 1.0
- Name = semaphore: sema_destroy, sema_init, sema_post, sema_trywait, sema_wait - overview of semaphore routines
-
- sema_post.3synch.html:
- Title = sema_post(3synch)
- Version = 1.0
- Name = sema_post - release a lock by incrementing the count value of the semaphore
-
- sema_trywait.3synch.html:
- Title = sema_trywait(3synch)
- Version = 1.0
- Name = sema_trywait - conditionally claim resources under the semaphore's control
-
- sema_wait.3synch.html:
- Title = sema_wait(3synch)
- Version = 1.0
- Name = sema_wait - acquire a semaphore
-
- _spin.3synch.html:
- Title = _spin(3synch)
- Version = 1.0
- Name = _spin: _spin_init, _spin_lock, _spin_trylock, _spin_unlock, _spin_destroy - overview of spin lock routines
-
- _spin_destroy.3synch.html:
- Title = _spin_destroy(3synch)
- Version = 1.0
- Name = _spin_destroy - destroy a spin lock
-
- _spin_init.3synch.html:
- Title = _spin_init(3synch)
- Version = 1.0
- Name = _spin_init - initialize a spin lock
-
- _spin_lock.3synch.html:
- Title = _spin_lock(3synch)
- Version = 1.0
- Name = _spin_lock - lock a spin lock
-
- _spin_trylock.3synch.html:
- Title = _spin_trylock(3synch)
- Version = 1.0
- Name = _spin_trylock - conditionally lock a spin lock
-
- _spin_unlock.3synch.html:
- Title = _spin_unlock(3synch)
- Version = 1.0
- Name = _spin_unlock - unlock a spin lock
-