- 论坛徽章:
- 0
|
bash-2.05b# man -k pthread
pthread_atfork (3thr) - register handlers to be called at fork(2) time
pthread_attr_destroy [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_getdetachstate [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_getinheritsched [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_getschedparam [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_getschedpolicy [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_getscope [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_init (3thr) - thread creation attributes
pthread_attr_setdetachstate [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_setinheritsched [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_setschedparam [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_setschedpolicy [pthread_attr_init] (3thr) - thread creation attributes
pthread_attr_setscope [pthread_attr_init] (3thr) - thread creation attributes
pthread_cancel (3thr) - thread cancellation
pthread_cleanup_pop [pthread_cleanup_push] (3thr) - install and remove cleanup
handlers
pthread_cleanup_pop_restore_np [pthread_cleanup_push] (3thr) - install and remove cleanup handlers
pthread_cleanup_push (3thr) - install and remove cleanup handlers
pthread_cleanup_push_defer_np [pthread_cleanup_push] (3thr) - install and remove cleanup handlers
pthread_cond_broadcast [pthread_cond_init] (3thr) - operations on conditions
pthread_cond_destroy [pthread_cond_init] (3thr) - operations on conditions
pthread_cond_init (3thr) - operations on conditions
pthread_cond_signal [pthread_cond_init] (3thr) - operations on conditions
pthread_cond_timedwait [pthread_cond_init] (3thr) - operations on conditions
pthread_cond_wait [pthread_cond_init] (3thr) - operations on conditions
pthread_condattr_destroy [pthread_condattr_init] (3thr) - condition creation attributes
pthread_condattr_init (3thr) - condition creation attributes
pthread_create (3thr) - create a new thread
pthread_detach (3thr) - put a running thread in the detached state
pthread_equal (3thr) - compare two thread identifiers
pthread_exit (3thr) - terminate the calling thread
pthread_getschedparam [pthread_setschedparam] (3thr) - control thread scheduling parameters
pthread_getspecific [pthread_key_create] (3thr) - management of thread-specific data
pthread_join (3thr) - wait for termination of another thread
pthread_key_create (3thr) - management of thread-specific data
pthread_key_delete [pthread_key_create] (3thr) - management of thread-specific
data
pthread_kill [pthread_sigmask] (3thr) - handling of signals in threads
pthread_kill_other_threads_np (3thr) - terminate all threads in program except
calling thread
pthread_mutex_destroy [pthread_mutex_init] (3thr) - operations on mutexes
pthread_mutex_init (3thr) - operations on mutexes
pthread_mutex_lock [pthread_mutex_init] (3thr) - operations on mutexes
pthread_mutex_trylock [pthread_mutex_init] (3thr) - operations on mutexes
pthread_mutex_unlock [pthread_mutex_init] (3thr) - operations on mutexes
pthread_mutexattr_destroy [pthread_mutexattr_init] (3thr) - mutex creation attributes
pthread_mutexattr_getkind_np [pthread_mutexattr_setkind_np] (3thr) - deprecated mutex creation attributes
pthread_mutexattr_gettype [pthread_mutexattr_init] (3thr) - mutex creation attributes
pthread_mutexattr_init (3thr) - mutex creation attributes
pthread_mutexattr_setkind_np (3thr) - deprecated mutex creation attributes
pthread_mutexattr_settype [pthread_mutexattr_init] (3thr) - mutex creation attributes
pthread_once (3thr) - once-only initialization
pthread_self (3thr) - return identifier of current thread
pthread_setcancelstate [pthread_cancel] (3thr) - thread cancellation
pthread_setcanceltype [pthread_cancel] (3thr) - thread cancellation
pthread_setschedparam (3thr) - control thread scheduling parameters
pthread_setspecific [pthread_key_create] (3thr) - management of thread-specific data
pthread_sigmask (3thr) - handling of signals in threads
pthread_testcancel [pthread_cancel] (3thr) - thread cancellation
sigwait [pthread_sigmask] (3thr) - handling of signals in threads
要想获得具体函数的在线帮助文档,可以直接用man function获得,例如:
bash-2.05b# man sigwait 可以获得sigwait的在线帮助.
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/43678/showart_343504.html |
|