代码搜索:pThread
找到约 7,828 项符合「pThread」的源代码
代码结果 7,828
www.eeworm.com/read/265179/11274364
h sql_pool.h
#include
#include
#include
#define MAX_WAIT_NUM 1024
#define BUSY 0
#define IDLE 1
#define FLUSH 2
struct queue_mem {
struct wait_struct *i
www.eeworm.com/read/408584/11380470
c strclithread2.c
#include "unpthread.h"
void *copyto(void *);
static int sockfd;
static FILE *fp;
static int done;
void
str_cli(FILE *fp_arg, int sockfd_arg)
{
char recvline[MAXLINE];
pthread_t tid;
sockfd = s
www.eeworm.com/read/347723/11642191
h net.h
#ifndef __NET_H__
#define __NET_H__
#include "common.h"
#include
#include
// Nuke +1 0902: For queuing control
#include
#include
#undef EXTERN
#i
www.eeworm.com/read/347594/11656641
cpp mysal.cpp
#include "allmgr.h"
#include "mysal.h"
CMySal::CMySal(CAllMgr* pAllMgr)
{
m_pAllMgr = pAllMgr;
m_hThrdGet = 0;
m_hThrdCDT = 0;
m_bAllYXSend = false;
m_bAllYCSend = false;
pthread_mutex_init(&m
www.eeworm.com/read/347238/11680704
c threaded.c
/* $Id: threaded.c,v 1.3 2006/03/28 09:23:22 fred Exp $ */
#include
#include
#include
FILE *fd;
int TotalEvenWords = 0, TotalOddWords = 0, TotalWords = 0;
const int
www.eeworm.com/read/156832/11761315
c testtc.c
/* testtc.c
* test file for testing AT91RM9200 tc, deals with the Timer/Counter 1
*/
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/156829/11761419
c testtc.c
/* testtc.c
* test file for testing AT91RM9200 tc, deals with the Timer/Counter 1
*/
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/156147/11824548
cpp chatcli.cpp
/* File : chatcli.cpp */
#include
#include
#include
#include "pthread.h"
#include "Mysocket.h"
#include "MyThread.h"
#include "TcpCliThr.h"
const int MAX_M
www.eeworm.com/read/258337/11869809
h qobject.h
#ifndef QOBJECT_H
#define QOBJECT_H
#include "qobjectdefs.h"
#include "qmetaobject.h"
#include "qconnection.h"
#include "qdict.h"
#include
#include
#include
#def
www.eeworm.com/read/155258/11887377
cpp xmlcache.cpp
//xmlcache.cpp
#include "xml.h"
CLock::CLock()
{
#ifdef WIN32
m_mut = CreateMutex(0,FALSE,0);
assert(m_mut);
#else
pthread_mutex_init(&m_mut);
#endif
}
CLock::~CLock()
{
#ifdef W