代码搜索:pThread
找到约 7,828 项符合「pThread」的源代码
代码结果 7,828
www.eeworm.com/read/175598/9540675
c pthread_setcanceltype.c
/*
* pthread_setcanceltype.c
*
* Description:
* POSIX thread functions related to thread cancellation.
*
* --------------------------------------------------------------------------
*
* P
www.eeworm.com/read/175598/9540710
c pthread_exit.c
/*
* pthread_exit.c
*
* Description:
* This translation unit implements routines associated with exiting from
* a thread.
*
* -------------------------------------------------------------------
www.eeworm.com/read/365276/9870694
pdf pthread-primer.pdf
www.eeworm.com/read/167847/9950201
h pthread_rwlock.h
/* include lockh */
#ifndef __pthread_rwlock_h
#define __pthread_rwlock_h
typedef struct {
pthread_mutex_t rw_mutex; /* basic lock on this struct */
pthread_cond_t rw_condreaders; /* for reader
www.eeworm.com/read/167847/9950287
h pthread_rwlock.h
/* include rwlockh */
#ifndef __pthread_rwlock_h
#define __pthread_rwlock_h
typedef struct {
pthread_mutex_t rw_mutex; /* basic lock on this struct */
pthread_cond_t rw_condreaders; /* for reade
www.eeworm.com/read/362846/9979047
h my_pthread.h
/* Copyright (C) 2000 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Fou
www.eeworm.com/read/362681/9987169
c pthread_test.c
#include
#include
#include
#include"pthread.h"
void reader_function(void);
void writer_function(void);
char buffer;
int buffer_has_item=0;
pthread_mutex_t mutex;
www.eeworm.com/read/166096/10035828
h my_pthread.h
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Publ
www.eeworm.com/read/162272/10320769
h pthread_alloc.h
/*
* Copyright (c) 1996-1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereb
www.eeworm.com/read/424463/10446565