📄 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 + -