代码搜索:pthread_create
找到约 436 项符合「pthread_create」的源代码
代码结果 436
www.eeworm.com/read/278507/10530241
c test01.c
#include "unpthread.h"
void *
myfunc(void *ptr)
{
pause();
}
int
main(int argc, char **argv)
{
pthread_t tid;
int n;
/* Let's see what the return value is and what errno is after a error. */
www.eeworm.com/read/417321/10994458
c rwlock6.c
/*
* rwlock6.c
*
*
* --------------------------------------------------------------------------
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright(C) 1998 John E. Bossom
www.eeworm.com/read/416155/11039740
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/416027/11044037
c attr_thread.c
#include
#include
#include
void thread1(void)
{
int i=0;
for(i=0;i
www.eeworm.com/read/217322/6964911
c attr_thread.c
#include
#include
#include
void thread1(void)
{
int i=0;
for(i=0;i
www.eeworm.com/read/347553/7125659
c llist_test_threads_rw.c
/********************************************************
* An example source module to accompany...
*
* "Using POSIX Threads: Programming with Pthreads"
* by Brad nichols, Dick Buttlar, J
www.eeworm.com/read/347553/7125663
c llist_test_threads.c
/********************************************************
* An example source module to accompany...
*
* "Using POSIX Threads: Programming with Pthreads"
* by Brad nichols, Dick Buttlar, J
www.eeworm.com/read/464500/7157001
c attr_thread.c
#include
#include
#include
void thread1(void)
{
int i=0;
for(i=0;i
www.eeworm.com/read/464132/7168984
cpp mythread.cpp
#include
#include
#include
#include
#include
#include"../include/mythread.h"
MyThread::MyThread(Thread_interface &w)
{
worker = &w;
error = 0;
}
void
www.eeworm.com/read/457066/7334481
c term.c
/************************************************
* serial communication demo *
*************************************************/
#include
#include
#include
#incl