代码搜索:pThread
找到约 7,828 项符合「pThread」的源代码
代码结果 7,828
www.eeworm.com/read/103510/6214935
c cancel.c
/*
* Written by Gilles Chanteperdrix .
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public Lic
www.eeworm.com/read/339614/12220913
c gps_isr.c
#include "gps_isr.h"
#include "gps.h"
#include "socket.h"
#include "return.h"
#include "ports.h"
#include
#include
#include
#include
void GPS_I
www.eeworm.com/read/223304/14646925
h fuse_misc.h
/*
FUSE: Filesystem in Userspace
Copyright (C) 2001-2006 Miklos Szeredi
This program can be distributed under the terms of the GNU LGPL.
See the file COPYING.LIB
www.eeworm.com/read/219729/14867518
h rc_ctl_fifo.h
/*
* 文 件 名:rc_ctl_fifo.h
* 功 能:读管道部分相关的函数接口
* 作 者:马云龙
* E_mail : mayunlong21@163.com
* 开始时间:2007-4-23 16:17
* 结束时间:
* 修改时间:
*/
#ifndef RC_CTL_FIFO_H//2007-3-14 12:59
#define
www.eeworm.com/read/212668/15151458
h fuse_misc.h
/*
FUSE: Filesystem in Userspace
Copyright (C) 2001-2006 Miklos Szeredi
This program can be distributed under the terms of the GNU LGPL.
See the file COPYING.LIB
www.eeworm.com/read/387315/8693505
cpp timer_manager.cpp
#include "timer_manager.h"
#include
#include
#include
pthread_mutex_t CTimerManager::m_mutex= PTHREAD_MUTEX_INITIALIZER;
CTimerManager * CTimerManager::m_inst
www.eeworm.com/read/283196/9036416
c thread2.c
#include
#include
#include
#include
void *thread_function(void *arg);
char message[] = "Hello World";
int main() {
int res;
pthread_t a_thread;
www.eeworm.com/read/183272/9172326
c rwlock.c
#include
#include
struct job {
struct job *j_next;
struct job *j_prev;
pthread_t j_id; /* tells which thread handles this job */
/* ... more stuff here ... */
};
struc
www.eeworm.com/read/183272/9172901
13 fig11.13
#include
#include
struct job {
struct job *j_next;
struct job *j_prev;
pthread_t j_id; /* tells which thread handles this job */
/* ... more stuff here ... */
};
struc
www.eeworm.com/read/182631/9198313
cpp mymutex_unix.cpp
#include
typedef pthread_mutex_t MY_MUTEX_T;
#include "mymutex.h"
#include "mymutex_p.h"
#include
#include
// Private class declarations
class MyRealMutexPrivate: