pthread_once

  • 函数原型 int pthread_once(pthread_once_t once_control, void (init_routine) (void));
    • 函数作用 本函数使用初值为PTHREAD_ONCE_INIT的once_control变量保证init_routine()函数在本进程执行序列中仅执行一次

基本实现

Linux Threads 使用互斥锁和条件变量保证由pthread_once()指定的函数执行且仅执行一次,而once_control则表征是否执行过。如果 once_control的初值不是PTHREAD_ONCE_INIT(Linux Threads定义为0),pthread_once()的行为就会不正常。在Linux Threads中,实际”一次性函数”的执行状态有三种:NEVER(0)、IN_PROGRESS(1)、DONE(2),如果 once初值设为1,则由于所有pthread_once()都必须等待其中一个激发”已执行一次”信号,因此所有pthread_once()都会陷入永久的等待中;如果设为2,则表示该函数已执行过一次,从而所有pthread_once()都会立即返回0。

[原文链接] https://www.cnblogs.com/qinwanlin/p/pthread_once.html

pthread_once

上一篇:go接收前端传过来的方式


下一篇:Nginx+uwsgi+Django