亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? pthread.h

?? 一個網(wǎng)絡(luò)監(jiān)視的程序
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* This is the POSIX thread API (POSIX 1003).
 *
 * --------------------------------------------------------------------------
 *
 *	Pthreads-win32 - POSIX Threads Library for Win32
 *	Copyright(C) 1998 John E. Bossom
 *	Copyright(C) 1999,2002 Pthreads-win32 contributors
 * 
 *	Contact Email: rpj@ise.canberra.edu.au
 * 
 *	The current list of contributors is contained
 *	in the file CONTRIBUTORS included with the source
 *	code distribution. The list can also be seen at the
 *	following World Wide Web location:
 *	http://sources.redhat.com/pthreads-win32/contributors.html
 * 
 *	This library is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU Lesser General Public
 *	License as published by the Free Software Foundation; either
 *	version 2 of the License, or (at your option) any later version.
 * 
 *	This library is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *	Lesser General Public License for more details.
 * 
 *	You should have received a copy of the GNU Lesser General Public
 *	License along with this library in the file COPYING.LIB;
 *	if not, write to the Free Software Foundation, Inc.,
 *	59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 */
#if !defined( PTHREAD_H )
#define PTHREAD_H
#undef PTW32_LEVEL
#if defined(_POSIX_SOURCE)
#define PTW32_LEVEL 0
/* Early POSIX */
#endif
#if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 199309
#undef PTW32_LEVEL
#define PTW32_LEVEL 1
/* Include 1b, 1c and 1d */
#endif
#if defined(INCLUDE_NP)
#undef PTW32_LEVEL
#define PTW32_LEVEL 2
/* Include Non-Portable extensions */
#endif
#define PTW32_LEVEL_MAX 3
#if !defined(PTW32_LEVEL)
#define PTW32_LEVEL PTW32_LEVEL_MAX
/* Include everything */
#endif
#ifdef _UWIN
#   define HAVE_STRUCT_TIMESPEC 1
#   define HAVE_SIGNAL_H	1
#   undef HAVE_CONFIG_H
#   pragma comment(lib, "pthread")
#endif
/*
 * -------------------------------------------------------------
 *
 *
 * Module: pthread.h
 *
 * Purpose:
 *	Provides an implementation of PThreads based upon the
 *	standard:
 *
 *		POSIX 1003.1c-1995	(POSIX.1c)
 *
 *	Parts of the implementation also comply with the
 *	Open Group Unix 98 specification in order to enhance
 *	code portability between Windows, various commercial
 *	Unix implementations, and Linux.
 *
 *	See the ANNOUNCE file for a full list of conforming
 *	routines and defined constants, and a list of missing
 *	routines and constants not defined in this implementation.
 *
 * Authors:
 *	There have been many contributors to this library.
 *	The initial implementation was contributed by
 *	John Bossom, and several others have provided major
 *	sections or revisions of parts of the implementation.
 *	Often significant effort has been contributed to
 *	find and fix important bugs and other problems to
 *	improve the reliability of the library, which sometimes
 *	is not reflected in the amount of code which changed as
 *	result.
 *	As much as possible, the contributors are acknowledged
 *	in the ChangeLog file in the source code distribution
 *	where their changes are noted in detail.
 *
 *	Contributors are listed in the CONTRIBUTORS file.
 *
 *	As usual, all bouquets go to the contributors, and all
 *	brickbats go to the project maintainer.
 *
 * Maintainer:
 *	The code base for this project is coordinated and
 *	eventually pre-tested, packaged, and made available by
 *
 *		Ross Johnson <rpj@ise.canberra.edu.au>
 *
 * QA Testers:
 *	Ultimately, the library is tested in the real world by
 *	a host of competent and demanding scientists and
 *	engineers who report bugs and/or provide solutions
 *	which are then fixed or incorporated into subsequent
 *	versions of the library. Each time a bug is fixed, a
 *	test case is written to prove the fix and ensure
 *	that later changes to the code don't reintroduce the
 *	same error. The number of test cases is slowly growing
 *	and therefore so is the code reliability.
 *
 * Compliance:
 *	See the file ANNOUNCE for the list of implemented
 *	and not-implemented routines and defined options.
 *	Of course, these are all defined is this file as well.
 *
 * Web site:
 *	The source code and other information about this library
 *	are available from
 *
 *		http://sources.redhat.com/pthreads-win32/
 *
 * -------------------------------------------------------------
 */
/* Try to avoid including windows.h */
#if defined(__MINGW32__) && defined(__cplusplus)
/*
 * FIXME: The pthreadGCE.dll build gets linker unresolved errors
 * on pthread_key_create() unless windows.h is included here.
 * It appears to have something to do with an argument type mismatch.
 * Looking at tsd.o with 'nm' shows this line:
 * 00000000 T _pthread_key_create__FPP14pthread_key_t_PFPv_v
 * instead of
 * 00000000 T _pthread_key_create
 */
#define PTW32_INCLUDE_WINDOWS_H
#endif
#ifdef PTW32_INCLUDE_WINDOWS_H
#include <windows.h>
#endif
/*
 * -----------------
 * autoconf switches
 * -----------------
 */
#if HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#if PTW32_LEVEL >= PTW32_LEVEL_MAX
/* Try to avoid including windows.h */
#if defined(__MINGW32__) && defined(__cplusplus)
/*
 * FIXME: The pthreadGCE.dll build gets linker unresolved errors
 * on pthread_key_create() unless windows.h is included here.
 * It appears to have something to do with an argument type mismatch.
 * Looking at tsd.o with 'nm' shows this line:
 * 00000000 T _pthread_key_create__FPP14pthread_key_t_PFPv_v
 * instead of
 * 00000000 T _pthread_key_create
 */
#define PTW32_INCLUDE_WINDOWS_H
#endif
#ifdef PTW32_INCLUDE_WINDOWS_H
#include <windows.h>
#endif
#ifndef NEED_FTIME
#include <time.h>
#else /* NEED_FTIME */
/* use native WIN32 time API */
#endif /* NEED_FTIME */
#if HAVE_SIGNAL_H
#include <signal.h>
#endif /* HAVE_SIGNAL_H */
#include <setjmp.h>
/*
 * This is a duplicate of what is in the autoconf config.h,
 * which is only used when building the pthread-win32 libraries.
 */
#ifndef PTW32_CONFIG_H
#  if defined(WINCE)
#    define NEED_ERRNO
#    define NEED_SEM
#  endif
#  if defined(_UWIN) || defined(__MINGW32__)
#    define HAVE_MODE_T
#  endif
#endif
/*
 *
 */
#if PTW32_LEVEL >= PTW32_LEVEL_MAX
#ifdef NEED_ERRNO
#include "need_errno.h"
#else
#include <errno.h>
#endif
#endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
/*
 * Several systems don't define ENOTSUP. If not, we use
 * the same value as Solaris.
 */
#ifndef ENOTSUP
#  define ENOTSUP 48
#endif
#ifndef ETIMEDOUT
#  define ETIMEDOUT 10060     /* This is the value in winsock.h. */
#endif
#include <sched.h>
/*
 * To avoid including windows.h we define only those things that we
 * actually need from it. I don't like the potential incompatibility that
 * this creates with future versions of windows.
 */
#ifndef PTW32_INCLUDE_WINDOWS_H
#ifndef HANDLE
# define PTW32__HANDLE_DEF
# define HANDLE void *
#endif
#ifndef DWORD
# define PTW32__DWORD_DEF
# define DWORD unsigned long
#endif
#endif
#endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
#ifndef HAVE_STRUCT_TIMESPEC
struct timespec {
	long tv_sec;
	long tv_nsec;
};
#endif /* HAVE_STRUCT_TIMESPEC */
#ifndef SIG_BLOCK
#define SIG_BLOCK 0
#endif /* SIG_BLOCK */
#ifndef SIG_UNBLOCK 
#define SIG_UNBLOCK 1
#endif /* SIG_UNBLOCK */
#ifndef SIG_SETMASK
#define SIG_SETMASK 2
#endif /* SIG_SETMASK */
#ifdef __cplusplus
extern "C"
{
#endif				/* __cplusplus */
/*
 * -------------------------------------------------------------
 *
 * POSIX 1003.1c-1995 Options
 * ===========================
 *
 * _POSIX_THREADS (set)
 *			If set, you can use threads
 *
 * _POSIX_THREAD_ATTR_STACKSIZE (set)
 *			If set, you can control the size of a thread's
 *			stack
 *				pthread_attr_getstacksize
 *				pthread_attr_setstacksize
 *
 * _POSIX_THREAD_ATTR_STACKADDR (not set)
 *			If set, you can allocate and control a thread's
 *			stack. If not supported, the following functions
 *			will return ENOSYS, indicating they are not
 *			supported:
 *				pthread_attr_getstackaddr
 *				pthread_attr_setstackaddr
 *
 * _POSIX_THREAD_PRIORITY_SCHEDULING (set)
 *			If set, you can use realtime scheduling.
 *			Indicates the availability of:
 *				pthread_attr_getinheritsched
 *				pthread_attr_getschedparam
 *				pthread_attr_getschedpolicy
 *				pthread_attr_getscope
 *				pthread_attr_setinheritsched
 *				pthread_attr_setschedparam
 *				pthread_attr_setschedpolicy
 *				pthread_attr_setscope
 *				pthread_getschedparam
 *				pthread_setschedparam
 *				sched_get_priority_max
 *				sched_get_priority_min
 *				sched_rr_set_interval
 *
 * _POSIX_THREAD_PRIO_INHERIT (not set)
 *			If set, you can create priority inheritance
 *			mutexes.
 *				pthread_mutexattr_getprotocol +
 *				pthread_mutexattr_setprotocol +
 *
 * _POSIX_THREAD_PRIO_PROTECT (not set)
 *			If set, you can create priority ceiling mutexes
 *			Indicates the availability of:
 *				pthread_mutex_getprioceiling
 *				pthread_mutex_setprioceiling
 *				pthread_mutexattr_getprioceiling
 *				pthread_mutexattr_getprotocol	  +
 *				pthread_mutexattr_setprioceiling
 *				pthread_mutexattr_setprotocol	  +
 *
 * _POSIX_THREAD_PROCESS_SHARED (not set)
 *			If set, you can create mutexes and condition
 *			variables that can be shared with another
 *			process.If set, indicates the availability
 *			of:
 *				pthread_mutexattr_getpshared
 *				pthread_mutexattr_setpshared
 *				pthread_condattr_getpshared
 *				pthread_condattr_setpshared
 *
 * _POSIX_THREAD_SAFE_FUNCTIONS (set)
 *			If set you can use the special *_r library
 *			functions that provide thread-safe behaviour
 *
 *	+ These functions provide both 'inherit' and/or
 *	  'protect' protocol, based upon these macro
 *	  settings.
 *
 * POSIX 1003.1c-1995 Limits
 * ===========================
 *
 * PTHREAD_DESTRUCTOR_ITERATIONS
 *			Maximum number of attempts to destroy
 *			a thread's thread-specific data on
 *			termination (must be at least 4)
 *
 * PTHREAD_KEYS_MAX
 *			Maximum number of thread-specific data keys
 *			available per process (must be at least 128)
 *
 * PTHREAD_STACK_MIN
 *			Minimum supported stack size for a thread
 *
 * PTHREAD_THREADS_MAX
 *			Maximum number of threads supported per
 *			process (must be at least 64).
 *
 *
 * POSIX 1003.1j/D10-1999 Options
 * ==============================
 *
 * _POSIX_READER_WRITER_LOCKS (set)
 *			If set, you can use read/write locks
 *
 * _POSIX_SPIN_LOCKS (set)
 *			If set, you can use spin locks
 *
 * _POSIX_BARRIERS (set)
 *			If set, you can use barriers
 *
 * -------------------------------------------------------------
 */
/*
 * POSIX Options
 */
#ifndef _POSIX_THREADS
#define _POSIX_THREADS
#endif
#ifndef _POSIX_READER_WRITER_LOCKS
#define _POSIX_READER_WRITER_LOCKS
#endif
#ifndef _POSIX_SPIN_LOCKS
#define _POSIX_SPIN_LOCKS
#endif
#ifndef _POSIX_BARRIERS
#define _POSIX_BARRIERS
#endif
#define _POSIX_THREAD_SAFE_FUNCTIONS
#define _POSIX_THREAD_ATTR_STACKSIZE
#define _POSIX_THREAD_PRIORITY_SCHEDULING
#if defined( KLUDGE )
/*
 * The following are not supported
 */
#define _POSIX_THREAD_ATTR_STACKADDR
#define _POSIX_THREAD_PRIO_INHERIT
#define _POSIX_THREAD_PRIO_PROTECT
#define _POSIX_THREAD_PROCESS_SHARED
#endif				/* KLUDGE */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线观看日韩高清av| 91麻豆精品国产自产在线| 国产日产精品一区| 精品影院一区二区久久久| 欧美人伦禁忌dvd放荡欲情| 亚洲精品一二三区| 97se亚洲国产综合自在线不卡| 日本一区二区三区久久久久久久久不| 国产乱妇无码大片在线观看| 久久久噜噜噜久久中文字幕色伊伊 | 久久久久久久电影| 国产一区二区三区黄视频| 久久久久久久国产精品影院| 国产精品一区免费视频| 国产欧美日韩精品a在线观看| 丰满少妇久久久久久久| 欧美国产激情一区二区三区蜜月| 国产91精品一区二区麻豆亚洲| 欧美国产精品一区| 91麻豆国产香蕉久久精品| 一区二区三区免费网站| 欧美性一级生活| 日日夜夜免费精品| 欧美成va人片在线观看| 国产xxx精品视频大全| 国产精品久久久久久久久免费樱桃| av一区二区三区| 亚洲精品高清在线观看| 精品视频一区二区不卡| 免费看欧美美女黄的网站| 精品久久久久久无| 成+人+亚洲+综合天堂| 一区二区三区在线观看视频| 欧美在线啊v一区| 蜜桃视频在线一区| 欧美国产激情一区二区三区蜜月| 91性感美女视频| 日韩精品一级中文字幕精品视频免费观看 | 亚洲综合网站在线观看| 7777精品伊人久久久大香线蕉| 精品一区二区在线免费观看| 中文字幕高清一区| 欧美午夜寂寞影院| 精品一区二区在线播放| 中文字幕在线不卡国产视频| 欧美三级中文字幕| 国产一区二区三区在线观看免费视频| 国产精品久久久久四虎| 欧美日韩精品免费观看视频| 紧缚奴在线一区二区三区| 国产精品成人免费在线| 欧美日韩视频在线观看一区二区三区 | 五月天亚洲婷婷| 久久午夜电影网| 色天使色偷偷av一区二区| 日韩极品在线观看| 欧美国产综合一区二区| 欧美日韩aaaaaa| 国产99久久精品| 亚洲高清三级视频| 国产亚洲综合在线| 欧美性一区二区| 国产成人av电影免费在线观看| 一区二区三区免费观看| 久久亚洲二区三区| 色婷婷一区二区三区四区| 久久国产三级精品| 亚洲老司机在线| 精品国产3级a| 91福利国产精品| 国产精品911| 日韩高清一级片| 一区在线观看视频| 欧美mv日韩mv亚洲| 欧美影院午夜播放| 丰满少妇在线播放bd日韩电影| 日韩精品色哟哟| 自拍偷自拍亚洲精品播放| www国产成人| 欧美日韩一区二区三区高清| 成人av资源在线| 紧缚奴在线一区二区三区| 亚洲国产wwwccc36天堂| 中文幕一区二区三区久久蜜桃| 91精品国产欧美日韩| 91在线视频播放| 国产经典欧美精品| 免费的国产精品| 亚洲成人一二三| 亚洲日本va在线观看| 26uuu精品一区二区| 欧美绝品在线观看成人午夜影视| www.成人网.com| 国产福利一区二区三区视频在线| 丝瓜av网站精品一区二区| 一区二区三区在线免费观看| 国产精品免费免费| 久久精品夜夜夜夜久久| 日韩欧美久久一区| 91麻豆精品国产综合久久久久久| 色网站国产精品| 不卡欧美aaaaa| 国产成人精品网址| 国产一区视频网站| 久久精品国产精品亚洲红杏| 日韩黄色在线观看| 亚洲国产精品一区二区久久| 亚洲人成网站色在线观看| 国产欧美一区二区精品性| 精品精品国产高清a毛片牛牛 | 欧美日韩一卡二卡三卡| 色拍拍在线精品视频8848| heyzo一本久久综合| 国产很黄免费观看久久| 激情综合一区二区三区| 蜜桃精品视频在线观看| 蜜臀久久99精品久久久画质超高清 | 欧美综合在线视频| 91九色02白丝porn| 色94色欧美sute亚洲线路一久| 99久久久精品| 成人av电影在线播放| 成人午夜视频网站| 成人午夜免费视频| 不卡的电影网站| 91性感美女视频| 91成人在线免费观看| 欧美中文字幕亚洲一区二区va在线 | 中文字幕亚洲视频| 国产精品毛片a∨一区二区三区| 亚洲国产精品激情在线观看| 久久久久久免费| 中国av一区二区三区| 国产精品久久久久久户外露出| 国产三级一区二区| 国产精品久久久久婷婷| 亚洲欧洲制服丝袜| 亚洲国产日韩综合久久精品| 亚洲成人精品影院| 日本成人在线不卡视频| 美腿丝袜一区二区三区| 九九在线精品视频| 国产成人无遮挡在线视频| 成人v精品蜜桃久久一区| 一本到一区二区三区| 欧美日韩亚洲综合一区二区三区| 4438x成人网最大色成网站| 欧美变态凌虐bdsm| 国产欧美日韩卡一| 亚洲卡通欧美制服中文| 性做久久久久久免费观看欧美| 人人狠狠综合久久亚洲| 国产一区二区影院| 99国产欧美另类久久久精品| 日本韩国欧美一区| 日韩亚洲欧美成人一区| 国产日韩欧美麻豆| 亚洲欧美日韩中文播放| 首页国产欧美日韩丝袜| 国产精品综合一区二区| 91一区在线观看| 欧美精品亚洲二区| 久久久久久久国产精品影院| 综合在线观看色| 日韩精品1区2区3区| 国产成人午夜99999| 欧美怡红院视频| 欧美精品一区二区三区在线播放| 国产精品成人网| 日本不卡一区二区三区高清视频| 国产美女久久久久| 在线亚洲一区二区| 欧美xxxx在线观看| 亚洲欧洲精品一区二区三区不卡| 亚洲国产另类精品专区| 国产在线精品免费av| 色婷婷综合视频在线观看| 欧美一区二区三区思思人| 国产精品无码永久免费888| 亚洲最大成人综合| 国内精品写真在线观看| 91国产丝袜在线播放| 亚洲精品一区在线观看| 樱花草国产18久久久久| 久久精品国产亚洲5555| 一本久久精品一区二区| 日韩午夜av电影| 亚洲女人的天堂| 精品一区二区精品| 91黄色激情网站| 久久久久国产精品麻豆ai换脸 | 99久久免费精品高清特色大片| 这里只有精品免费| 自拍偷拍亚洲欧美日韩| 精品一区二区三区免费| 欧美视频在线观看一区| 国产欧美一区二区三区在线老狼| 亚洲777理论| 99国产精品久| 久久久美女毛片|