Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1091845
  • 博文数量: 187
  • 博客积分: 1156
  • 博客等级: 少尉
  • 技术积分: 2163
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-16 15:01
个人简介

go!go!go!

文章分类

全部博文(187)

文章存档

2024年(1)

2023年(11)

2022年(13)

2021年(15)

2020年(38)

2019年(3)

2018年(6)

2016年(1)

2015年(16)

2014年(13)

2013年(24)

2012年(46)

分类: C/C++

2014-04-03 15:58:29


  1. pthread_atfork (3p) - register fork handlers
  2. pthread_attr_destroy [pthread_attr_init] (3p) - destroy and initialize the thread attributes object
  3. pthread_attr_getdetachstate (3p) - get and set the detachstate attribute
  4. pthread_attr_getguardsize (3p) - get and set the thread guardsize attribute
  5. pthread_attr_getinheritsched (3p) - get and set the inheritsched attribute (REALTIME THREADS)
  6. pthread_attr_getschedparam (3p) - get and set the schedparam attribute
  7. pthread_attr_getschedpolicy (3p) - get and set the schedpolicy attribute (REALTIME THREADS)
  8. pthread_attr_getscope (3p) - get and set the contentionscope attribute (REALTIME THREADS)
  9. pthread_attr_getstack (3p) - get and set stack attributes
  10. pthread_attr_getstackaddr (3p) - get and set the stackaddr attribute
  11. pthread_attr_getstacksize (3p) - get and set the stacksize attribute
  12. pthread_attr_init (3p) - destroy and initialize the thread attributes object
  13. pthread_attr_setdetachstate [pthread_attr_getdetachstate] (3p) - get and set the detachstate attribute
  14. pthread_attr_setguardsize [pthread_attr_getguardsize] (3p) - get and set the thread guardsize attribute
  15. pthread_attr_setinheritsched [pthread_attr_getinheritsched] (3p) - get and set the inheritsched attribute (REALTIME THREADS)
  16. pthread_attr_setschedparam [pthread_attr_getschedparam] (3p) - get and set the schedparam attribute
  17. pthread_attr_setschedpolicy [pthread_attr_getschedpolicy] (3p) - get and set the schedpolicy attribute (REALTIME THREADS)
  18. pthread_attr_setscope [pthread_attr_getscope] (3p) - get and set the contentionscope attribute (REALTIME THREADS)
  19. pthread_attr_setstack [pthread_attr_getstack] (3p) - get and set stack attributes
  20. pthread_attr_setstackaddr [pthread_attr_getstackaddr] (3p) - get and set the stackaddr attribute
  21. pthread_attr_setstacksize [pthread_attr_getstacksize] (3p) - get and set the stacksize attribute
  22. pthread_barrier_destroy [pthread_barrier_init] (3p) - destroy and initialize a barrier object (ADVANCED REALTIME THREADS)
  23. pthread_barrier_init (3p) - destroy and initialize a barrier object (ADVANCED REALTIME THREADS)
  24. pthread_barrier_wait (3p) - synchronize at a barrier (ADVANCED REALTIME THREADS)
  25. pthread_barrierattr_destroy [pthread_barrierattr_init] (3p) - destroy and initialize the barrier attributes object (ADVANCED REALTIME THREADS)
  26. pthread_barrierattr_getpshared (3p) - get and set the process-shared attribute of the barrier attributes object (ADVANCED REALTIME THREADS)
  27. pthread_barrierattr_init (3p) - destroy and initialize the barrier attributes object (ADVANCED REALTIME THREADS)
  28. pthread_barrierattr_setpshared [pthread_barrierattr_getpshared] (3p) - get and set the process-shared attribute of the barrier attributes object (ADVANCED REALTIME THREADS)
  29. pthread_cancel (3p) - cancel execution of a thread
  30. pthread_cleanup_pop [pthread_cleanup_push] (3p) - establish cancellation handlers
  31. pthread_cleanup_push (3p) - establish cancellation handlers
  32. pthread_cond_broadcast [pthread_cond_signal] (3p) - broadcast or signal a condition
  33. pthread_cond_destroy [pthread_cond_init] (3p) - destroy and initialize condition variables
  34. pthread_cond_init (3p) - destroy and initialize condition variables
  35. pthread_cond_signal (3p) - broadcast or signal a condition
  36. pthread_cond_timedwait [pthread_cond_wait] (3p) - wait on a condition
  37. pthread_cond_wait (3p) - wait on a condition
  38. pthread_condattr_destroy [pthread_condattr_init] (3p) - destroy and initialize the condition variable attributes object
  39. pthread_condattr_getclock (3p) - get and set the clock selection condition variable attribute (ADVANCED REALTIME)
  40. pthread_condattr_getpshared (3p) - get and set the process-shared condition variable attributes
  41. pthread_condattr_init (3p) - destroy and initialize the condition variable attributes object
  42. pthread_condattr_setclock [pthread_condattr_getclock] (3p) - get and set the clock selection condition variable attribute (ADVANCED REALTIME)
  43. pthread_condattr_setpshared [pthread_condattr_getpshared] (3p) - get and set the process-shared condition variable attributes
  44. pthread_create (3p) - thread creation
  45. pthread_detach (3p) - detach a thread
  46. pthread_equal (3p) - compare thread IDs
  47. pthread_exit (3p) - thread termination
  48. pthread_getconcurrency (3p) - get and set the level of concurrency
  49. pthread_getcpuclockid (3p) - access a thread CPU-time clock (ADVANCED REALTIME THREADS)
  50. pthread_getschedparam (3p) - dynamic thread scheduling parameters access (REALTIME THREADS)
  51. pthread_getspecific (3p) - thread-specific data management
  52. pthread_join (3p) - wait for thread termination
  53. pthread_key_create (3p) - thread-specific data key creation
  54. pthread_key_delete (3p) - thread-specific data key deletion
  55. pthread_kill (3p) - send a signal to a thread
  56. pthread_mutex_destroy [pthread_mutex_init] (3p) - destroy and initialize a mutex
  57. pthread_mutex_getprioceiling (3p) - get and set the priority ceiling of a mutex (REALTIME THREADS)
  58. pthread_mutex_init (3p) - destroy and initialize a mutex
  59. pthread_mutex_lock (3p) - lock and unlock a mutex
  60. pthread_mutex_setprioceiling [pthread_mutex_getprioceiling] (3p) - get and set the priority ceiling of a mutex (REALTIME THREADS)
  61. pthread_mutex_timedlock (3p) - lock a mutex (ADVANCED REALTIME)
  62. pthread_mutex_trylock [pthread_mutex_lock] (3p) - lock and unlock a mutex
  63. pthread_mutex_unlock [pthread_mutex_lock] (3p) - lock and unlock a mutex
  64. pthread_mutexattr_destroy [pthread_mutexattr_init] (3p) - destroy and initialize the mutex attributes object
  65. pthread_mutexattr_getprioceiling (3p) - get and set the prioceiling attribute of the mutex attributes object (REALTIME THREADS)
  66. pthread_mutexattr_getprotocol (3p) - get and set the protocol attribute of the mutex attributes object (REALTIME THREADS)
  67. pthread_mutexattr_getpshared (3p) - get and set the process-shared attribute
  68. pthread_mutexattr_gettype (3p) - get and set the mutex type attribute
  69. pthread_mutexattr_init (3p) - destroy and initialize the mutex attributes object
  70. pthread_mutexattr_setprioceiling [pthread_mutexattr_getprioceiling] (3p) - get and set the prioceiling attribute of the mutex attributes object (REALTIME THREADS)
  71. pthread_mutexattr_setprotocol [pthread_mutexattr_getprotocol] (3p) - get and set the protocol attribute of the mutex attributes object (REALTIME THREADS)
  72. pthread_mutexattr_setpshared [pthread_mutexattr_getpshared] (3p) - get and set the process-shared attribute
  73. pthread_mutexattr_settype [pthread_mutexattr_gettype] (3p) - get and set the mutex type attribute
  74. pthread_once (3p) - dynamic package initialization
  75. pthread_rwlock_destroy [pthread_rwlock_init] (3p) - destroy and initialize a read-write lock object
  76. pthread_rwlock_init (3p) - destroy and initialize a read-write lock object
  77. pthread_rwlock_rdlock (3p) - lock a read-write lock object for reading
  78. pthread_rwlock_timedrdlock (3p) - lock a read-write lock for reading
  79. pthread_rwlock_timedwrlock (3p) - lock a read-write lock for writing
  80. pthread_rwlock_tryrdlock [pthread_rwlock_rdlock] (3p) - lock a read-write lock object for reading
  81. pthread_rwlock_trywrlock [pthread_rwlock_wrlock] (3p) - lock a read-write lock object for writing
  82. pthread_rwlock_unlock (3p) - unlock a read-write lock object
  83. pthread_rwlock_wrlock (3p) - lock a read-write lock object for writing
  84. pthread_rwlockattr_destroy [pthread_rwlockattr_init] (3p) - destroy and initialize the read-write lock attributes object
  85. pthread_rwlockattr_getpshared (3p) - get and set the process-shared attribute of the read-write lock attributes object
  86. pthread_rwlockattr_init (3p) - destroy and initialize the read-write lock attributes object
  87. pthread_rwlockattr_setpshared [pthread_rwlockattr_getpshared] (3p) - get and set the process-shared attribute of the read-write lock attributes object
  88. pthread_self (3p) - get the calling thread ID
  89. pthread_setcancelstate [pthread_testcancel] (3p) - set cancelability state
  90. pthread_setcanceltype [pthread_testcancel] (3p) - set cancelability state
  91. pthread_setconcurrency [pthread_getconcurrency] (3p) - get and set the level of concurrency
  92. pthread_setschedparam [pthread_getschedparam] (3p) - dynamic thread scheduling parameters access (REALTIME THREADS)
  93. pthread_setschedprio (3p) - dynamic thread scheduling parameters access (REALTIME THREADS)
  94. pthread_setspecific [pthread_getspecific] (3p) - thread-specific data management
  95. pthread_sigmask [sigprocmask] (3p) - examine and change blocked signals
  96. pthread_spin_destroy [pthread_spin_init] (3p) - destroy or initialize a spin lock object (ADVANCED REALTIME THREADS)
  97. pthread_spin_init (3p) - destroy or initialize a spin lock object (ADVANCED REALTIME THREADS)
  98. pthread_spin_lock (3p) - lock a spin lock object (ADVANCED REALTIME THREADS)
  99. pthread_spin_trylock [pthread_spin_lock] (3p) - lock a spin lock object (ADVANCED REALTIME THREADS)
  100. pthread_spin_unlock (3p) - unlock a spin lock object (ADVANCED REALTIME THREADS)
  101. pthread_testcancel (3p) - set cancelability state

阅读(1355) | 评论(0) | 转发(0) |
0

上一篇:信号学习笔记

下一篇:xargs常见使用方法

给主人留下些什么吧!~~