⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pthreads.c

📁 gdb-6.0 linux 下的调试工具
💻 C
字号:
#include <stdio.h>#include <pthread.h>/* Under OSF 2.0 & 3.0 and HPUX 10, the second arg of pthread_create   is prototyped to be just a "pthread_attr_t", while under Solaris it   is a "pthread_attr_t *".  Arg! */#if defined (__osf__) || defined (__hpux__)#define PTHREAD_CREATE_ARG2(arg) arg#define PTHREAD_CREATE_NULL_ARG2 null_attrstatic pthread_attr_t null_attr;#else#define PTHREAD_CREATE_ARG2(arg) &arg#define PTHREAD_CREATE_NULL_ARG2 NULL#endifvoid *routine (void *arg){  sleep (9);  printf ("hello thread\n");}/* Marker function for the testsuite */voiddone_making_threads (void){  /* Nothing */};voidcreate_thread (void){  pthread_t tid;  if (pthread_create (&tid, PTHREAD_CREATE_NULL_ARG2, routine, (void *) 0xfeedface))    {      perror ("pthread_create 1");      exit (1);    }}intmain (int argc, char *argv[]){  int i;  /* Create a few threads */  for (i = 0; i < 5; i++)    create_thread ();  done_making_threads ();  printf ("hello\n");  printf ("hello\n");  return 0;}

⌨️ 快捷键说明

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