代码搜索:pthread_create

找到约 436 项符合「pthread_create」的源代码

代码结果 436
www.eeworm.com/read/117181/6110390

c pthreads.c

#include #include "config.h" #ifndef HAVE_PTHREAD_H /* Don't even try to compile. In fact, cause a syntax error that we can look for as a compiler error message and know that we have
www.eeworm.com/read/402196/11541126

c jointhread.c

#include #include void assisthread(void * arg) { printf ("I am helping to do some jobs\n"); sleep (3); pthread_exit (0); } int main(void) { pthread_t assistthid
www.eeworm.com/read/262350/11592020

c main.c

/************************************************ * GPRS demo, use ppp to connect internet * use ttyS1 to ctrol GPRS * by Zou jian guo * 2004-11-02 * *********************
www.eeworm.com/read/157434/11705922

c main.c

/************************************************ * GPRS demo, use ppp to connect internet * use ttyS1 to ctrol GPRS * by Zou jian guo * 2004-11-02 * *********************
www.eeworm.com/read/126571/14416561

linux

Linux下的多线程编程发信人: zllz.bbs@bbs.cqupt.edu.cn (我爱南瓜汤), 信区: Linux 标 题: Linux下的多线程编程 发信站: 幽幽黄桷兰 (Tue Dec 10 18:59:42 2002) 转信站: PKU!news.happynet.org!CQUPT 1 引言   线程(thread)技术早在60年代就被提出,但真正应用多线程到操作
www.eeworm.com/read/116283/14980440

htm 99.htm

CTerm非常精华下载
www.eeworm.com/read/213260/15139022

c main.c

/************************************************ * GPRS demo, use ppp to connect internet * use ttyS1 to ctrol GPRS * by Zou jian guo * 2004-11-02 * *********************
www.eeworm.com/read/158872/5591931

c pthreads.c

#include #include /* 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_at
www.eeworm.com/read/394107/8244652

txt linux 多线程编程.txt

Linux多线程编程 1 引言   线程(thread)技术早在60年代就被提出,但真正应用多线程到操作系统中去,是在80年代中期,solaris是这方面的佼佼者。传统的Unix也支持线程的概念,但是在一个进程(process)中只允许有一个线程,这样多线程就意味着多进程。现在,多线程技术已经被许多操作系统所支持,包括Windows/NT,当然,也包括Linux。   为什么有了进程的概念 ...
www.eeworm.com/read/411683/11232408

c jointhread.c

#include #include void assisthread(void * arg) { printf ("I am helping to do some jobs\n"); sleep (3); pthread_exit (0); } int main(void) { pthread_t assistthid