代码搜索:pThread
找到约 7,828 项符合「pThread」的源代码
代码结果 7,828
www.eeworm.com/read/335362/12534185
c exitstatus.c
#include "apue.h"
#include
void *
thr_fn1(void *arg)
{
printf("thread 1 returning\n");
return((void *)1);
}
void *
thr_fn2(void *arg)
{
printf("thread 2 exiting\n");
pthread_exit((vo
www.eeworm.com/read/335362/12534853
3 fig11.3
#include "apue.h"
#include
void *
thr_fn1(void *arg)
{
printf("thread 1 returning\n");
return((void *)1);
}
void *
thr_fn2(void *arg)
{
printf("thread 2 exiting\n");
pthread_exit((vo
www.eeworm.com/read/147608/12542556
c thread9.c
#include
#include
#include
#include
#define NUM_THREADS 6
void *thread_function(void *arg);
int main() {
int res;
pthread_t a_thread[NUM_THREADS]
www.eeworm.com/read/147608/12542563
c thread9a.c
#include
#include
#include
#include
#define NUM_THREADS 6
void *thread_function(void *arg);
int main() {
int res;
pthread_t a_thread[NUM_THREADS
www.eeworm.com/read/133667/14030791
c thread9.c
#include
#include
#include
#include
#define NUM_THREADS 6
void *thread_function(void *arg);
int main() {
int res;
pthread_t a_thread[NUM_THREADS]
www.eeworm.com/read/133667/14030799
c thread9a.c
#include
#include
#include
#include
#define NUM_THREADS 6
void *thread_function(void *arg);
int main() {
int res;
pthread_t a_thread[NUM_THREADS
www.eeworm.com/read/175598/9540679
c tsd.c
/*
* tsd.c
*
* Description:
* POSIX thread functions which implement thread-specific data (TSD).
*
* --------------------------------------------------------------------------
*
* Pthread
www.eeworm.com/read/417321/10995133
c tsd.c
/*
* tsd.c
*
* Description:
* POSIX thread functions which implement thread-specific data (TSD).
*
* --------------------------------------------------------------------------
*
* Pthread
www.eeworm.com/read/217335/14968807
c main.c
/*******************************************************
main.c :the main process
zhoushijie
2000/3/9
********************************************************/
#include
#include "mai
www.eeworm.com/read/217335/14968821
h main.h
/**********************************************************
main.h:the main header file
zhoushijie
2000/3/9
**********************************************************/
#include
#inclu