create1.c

来自「cygwin, 著名的在win32下模拟unix操作系统的东东」· C语言 代码 · 共 35 行

C
35
字号
/* * create1.c * * Description: * Create a thread and check that it ran. * * Depends on API functions: None. */#include "test.h"static int washere = 0;void * func(void * arg){  washere = 1;  return 0; } intmain(){  pthread_t t;  assert(pthread_create(&t, NULL, func, NULL) == 0);  /* A dirty hack, but we cannot rely on pthread_join in this     primitive test. */  Sleep(2000);  assert(washere == 1);  return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?