?? tident.c
字號:
/******************************************************** * An example source module to accompany... * * "Using POSIX Threads: Programming with Pthreads" * by Brad nichols, Dick Buttlar, Jackie Farrell * O'Reilly & Associates, Inc. * ******************************************************** * ident.c * * Demonstrate use of pthread_self() and pthread_equal() */#include <stdio.h>#include <pthread.h>pthread_t io_thread;void * io_routine(void *notused){ pthread_t thread; thread = pthread_self(); if (pthread_equal(io_thread, thread)) printf("hey it is me!\n"); else printf("thats\' not me!\n"); return(NULL);}main(void){ extern pthread_t io_thread; pthread_create(&io_thread, NULL, io_routine, NULL); pthread_join(io_thread, NULL);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -