代码搜索:pthread_create
找到约 436 项符合「pthread_create」的源代码
代码结果 436
www.eeworm.com/read/317123/13510057
c thread.c
/***************************************************************************
* thread.c
*
* Mon May 21 18:08:29 2007
* Copyright 2007 kf701
* Email
******
www.eeworm.com/read/149876/5696124
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/149876/5696606
c usrthcore.c
#include
/* #include "config.h" */
#define HAVE_PTHREAD_H
#define __hpux__
#define __osf__
#ifndef HAVE_PTHREAD_H
/* Don't even try to compile. In fact, cause a syntax error that we can
www.eeworm.com/read/149876/5696610
c usrthbasic.c
#include
/* #include "config.h" */
#define HAVE_PTHREAD_H
#define __hpux__
#define __osf__
#ifndef HAVE_PTHREAD_H
/* Don't even try to compile. In fact, cause a syntax error that we can
www.eeworm.com/read/148694/5711566
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/148694/5712040
c usrthcore.c
#include
/* #include "config.h" */
#define HAVE_PTHREAD_H
#define __hpux__
#define __osf__
#ifndef HAVE_PTHREAD_H
/* Don't even try to compile. In fact, cause a syntax error that we can
www.eeworm.com/read/148694/5712044
c usrthbasic.c
#include
/* #include "config.h" */
#define HAVE_PTHREAD_H
#define __hpux__
#define __osf__
#ifndef HAVE_PTHREAD_H
/* Don't even try to compile. In fact, cause a syntax error that we can
www.eeworm.com/read/125688/6022481
c mqtest.c
/*
* Copyright (c) 2000 University of Utah and the Flux Group.
* All rights reserved.
*
* This file is part of the Flux OSKit. The OSKit is free software, also known
* as "open source;" you can
www.eeworm.com/read/124347/6053544
c exit3.c
/*
* Test for pthread_exit().
*
* Depends on API functions: pthread_create().
*/
#include "test.h"
void *
func(void * arg)
{
pthread_exit(arg);
/* Never reached. */
assert(0);
}
int
main(in
www.eeworm.com/read/124347/6053559
c join1.c
/*
* Test for pthread_join().
*
* Depends on API functions: pthread_create(), pthread_join(), pthread_exit().
*/
#include "test.h"
void *
func(void * arg)
{
int i = (int) arg;
Sleep(i *