代码搜索:pthread_create
找到约 436 项符合「pthread_create」的源代码
代码结果 436
www.eeworm.com/read/175598/9540443
c self2.c
/*
* self2.c
*
*
* --------------------------------------------------------------------------
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright(C) 1998 John E. Bossom
www.eeworm.com/read/352217/10574452
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/419410/10870249
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/417321/10994399
c exit2.c
/*
* Test for pthread_exit().
*
*
* --------------------------------------------------------------------------
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright(C) 1998
www.eeworm.com/read/417321/10994505
c exit3.c
/*
* Test for pthread_exit().
*
*
* --------------------------------------------------------------------------
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright(C) 1998
www.eeworm.com/read/417321/10994584
c self2.c
/*
* self2.c
*
*
* --------------------------------------------------------------------------
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright(C) 1998 John E. Bossom
www.eeworm.com/read/457066/7334501
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/243434/12941026
man pthread_create.man
.TH PTHREAD_CREATE 3 LinuxThreads
.SH NAME
pthread_create \- create a new thread
.SH SYNOPSIS
#include
int pthread_create(pthread_t * thread, pthread_attr_t * attr, void * (*start_routi
www.eeworm.com/read/329171/12972589
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/317645/13500343
c wtx801.c
#include "include/mcuapi.h"
#define MaxThread 12
int main(void)
{
void *retval[MaxThread];
int k, res, iPort[MaxThread];
pthread_t thread_a[MaxThread];
FlashCopyOut(MyFlashBuff, 0, MaxAccess)