代码搜索:pThread
找到约 7,828 项符合「pThread」的源代码
代码结果 7,828
www.eeworm.com/read/168845/5430668
hpp irix.hpp
// (C) Copyright John Maddock 2001 - 2003.
// (C) Copyright Jens Maurer 2003.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanyi
www.eeworm.com/read/112801/15476470
ac configure.ac
dnl Process this file with autoconf to produce a configure script.
AC_INIT([efax-gtk], [2.2.11])
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME,AC_PACKAGE_VERSION)
AM_CONFIG_HEADER(src/config.h)
dnl check for wo
www.eeworm.com/read/439113/1808076
svn-base pt.h.svn-base
/*======================================================================*\
* This module creates a compatibility layer between Win32 and pthreads.
* DISCLAMER:
* This is NOT a full pthread implement
www.eeworm.com/read/264734/4287041
h phtbl.h
/* phtbl.h - perfect hash table (pthread safe) */
/* */
/* This program is free software; you can redi
www.eeworm.com/read/264734/4287049
c phtbl.c
/* phtbl.c - perfect hash table (pthread safe) */
/* */
/* This program is free software; you can redi
www.eeworm.com/read/162470/10303192
c thdm.c
#include
#include
#include
#include
#include
#define THREADS 4
#define LOOPTIME 1
pthread_t t[THREADS];
int cnt[THREADS];
int loop;
void*
www.eeworm.com/read/207991/4999041
h embeddedclient.h
#ifndef _EMBEDDEDCLIENT_H_
#define _EMBEDDEDCLIENT_H_
#include "mal_config.h"
#include "gdk.h"
#ifdef HAVE_PTHREAD_H
/* pthread.h on Windows includes config.h if HAVE_CONFIG_H is set */
#undef HAVE_
www.eeworm.com/read/283196/9036405
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/283196/9036414
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/183272/9172343
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