pthread_once()操作

sgy618發表於2011-02-11

pthread_once()

[@more@]

pthread_once()操作 僅執行一次的操作

int pthread_once(pthread_once_t *once_control, void (*init_routine) (void))

本函式使用初值為PTHREAD_ONCE_INITonce_control變數保證init_routine()函式在本程式執行序列中僅執行一次。

#include

#include

pthread_once_t once=PTHREAD_ONCE_INIT;

void once_run(void)

{

printf("once_run in thread

%dn",pthread_self());

}

void * child1(void *arg)

{

int tid=pthread_self();

printf("thread %d entern",tid);

pthread_once(&once,once_run);

printf("thread %d returnsn",tid);

}

void * child2(void *arg)

{

int tid=pthread_self();

printf("thread %d entern",tid);

pthread_once(&once,once_run);

printf("thread %d returnsn",tid);

}

int main(void)

{

int tid1,tid2;

printf("hellon");

pthread_create(&tid1,NULL,child1,NULL);

pthread_create(&tid2,NULL,child2,NULL);

sleep(10);

printf("main thread exitn");

return 0;

}

once_run()函式僅執行一次,且究竟在哪個執行緒中執行是不定的,儘管pthread_once(&once,once_run)出現在兩個執行緒中。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23168012/viewspace-1045837/,如需轉載,請註明出處,否則將追究法律責任。