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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? pthread.h

?? 基于WINPCAP的嗅探程序
?? H
?? 第 1 頁 / 共 3 頁
字號:
 * PThread Functions
 */
PTW32_DLLPORT int pthread_create (pthread_t * tid,
			    const pthread_attr_t * attr,
			    void *(*start) (void *),
			    void *arg);

PTW32_DLLPORT int pthread_detach (pthread_t tid);

PTW32_DLLPORT int pthread_equal (pthread_t t1,
			   pthread_t t2);

PTW32_DLLPORT void pthread_exit (void *value_ptr);

PTW32_DLLPORT int pthread_join (pthread_t thread,
			  void **value_ptr);

PTW32_DLLPORT pthread_t pthread_self (void);

PTW32_DLLPORT int pthread_cancel (pthread_t thread);

PTW32_DLLPORT int pthread_setcancelstate (int state,
				    int *oldstate);

PTW32_DLLPORT int pthread_setcanceltype (int type,
				   int *oldtype);

PTW32_DLLPORT void pthread_testcancel (void);

PTW32_DLLPORT int pthread_once (pthread_once_t * once_control,
			  void (*init_routine) (void));

#if PTW32_LEVEL >= PTW32_LEVEL_MAX
PTW32_DLLPORT ptw32_cleanup_t *ptw32_pop_cleanup (int execute);

PTW32_DLLPORT void ptw32_push_cleanup (ptw32_cleanup_t * cleanup,
				 void (*routine) (void *),
				 void *arg);
#endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */

/*
 * Thread Specific Data Functions
 */
PTW32_DLLPORT int pthread_key_create (pthread_key_t * key,
				void (*destructor) (void *));

PTW32_DLLPORT int pthread_key_delete (pthread_key_t key);

PTW32_DLLPORT int pthread_setspecific (pthread_key_t key,
				 const void *value);

PTW32_DLLPORT void *pthread_getspecific (pthread_key_t key);


/*
 * Mutex Attribute Functions
 */
PTW32_DLLPORT int pthread_mutexattr_init (pthread_mutexattr_t * attr);

PTW32_DLLPORT int pthread_mutexattr_destroy (pthread_mutexattr_t * attr);

PTW32_DLLPORT int pthread_mutexattr_getpshared (const pthread_mutexattr_t
					  * attr,
					  int *pshared);

PTW32_DLLPORT int pthread_mutexattr_setpshared (pthread_mutexattr_t * attr,
					  int pshared);

PTW32_DLLPORT int pthread_mutexattr_settype (pthread_mutexattr_t * attr, int kind);
PTW32_DLLPORT int pthread_mutexattr_gettype (pthread_mutexattr_t * attr, int *kind);

/*
 * Barrier Attribute Functions
 */
PTW32_DLLPORT int pthread_barrierattr_init (pthread_barrierattr_t * attr);

PTW32_DLLPORT int pthread_barrierattr_destroy (pthread_barrierattr_t * attr);

PTW32_DLLPORT int pthread_barrierattr_getpshared (const pthread_barrierattr_t
					    * attr,
					    int *pshared);

PTW32_DLLPORT int pthread_barrierattr_setpshared (pthread_barrierattr_t * attr,
					    int pshared);

/*
 * Mutex Functions
 */
PTW32_DLLPORT int pthread_mutex_init (pthread_mutex_t * mutex,
				const pthread_mutexattr_t * attr);

PTW32_DLLPORT int pthread_mutex_destroy (pthread_mutex_t * mutex);

PTW32_DLLPORT int pthread_mutex_lock (pthread_mutex_t * mutex);

PTW32_DLLPORT int pthread_mutex_timedlock(pthread_mutex_t *mutex,
				    const struct timespec *abstime);

PTW32_DLLPORT int pthread_mutex_trylock (pthread_mutex_t * mutex);

PTW32_DLLPORT int pthread_mutex_unlock (pthread_mutex_t * mutex);

/*
 * Spinlock Functions
 */
PTW32_DLLPORT int pthread_spin_init (pthread_spinlock_t * lock, int pshared);

PTW32_DLLPORT int pthread_spin_destroy (pthread_spinlock_t * lock);

PTW32_DLLPORT int pthread_spin_lock (pthread_spinlock_t * lock);

PTW32_DLLPORT int pthread_spin_trylock (pthread_spinlock_t * lock);

PTW32_DLLPORT int pthread_spin_unlock (pthread_spinlock_t * lock);

/*
 * Barrier Functions
 */
PTW32_DLLPORT int pthread_barrier_init (pthread_barrier_t * barrier,
				  const pthread_barrierattr_t * attr,
				  unsigned int count);

PTW32_DLLPORT int pthread_barrier_destroy (pthread_barrier_t * barrier);

PTW32_DLLPORT int pthread_barrier_wait (pthread_barrier_t * barrier);

/*
 * Condition Variable Attribute Functions
 */
PTW32_DLLPORT int pthread_condattr_init (pthread_condattr_t * attr);

PTW32_DLLPORT int pthread_condattr_destroy (pthread_condattr_t * attr);

PTW32_DLLPORT int pthread_condattr_getpshared (const pthread_condattr_t * attr,
					 int *pshared);

PTW32_DLLPORT int pthread_condattr_setpshared (pthread_condattr_t * attr,
					 int pshared);

/*
 * Condition Variable Functions
 */
PTW32_DLLPORT int pthread_cond_init (pthread_cond_t * cond,
			       const pthread_condattr_t * attr);

PTW32_DLLPORT int pthread_cond_destroy (pthread_cond_t * cond);

PTW32_DLLPORT int pthread_cond_wait (pthread_cond_t * cond,
			       pthread_mutex_t * mutex);

PTW32_DLLPORT int pthread_cond_timedwait (pthread_cond_t * cond,
				    pthread_mutex_t * mutex,
				    const struct timespec *abstime);

PTW32_DLLPORT int pthread_cond_signal (pthread_cond_t * cond);

PTW32_DLLPORT int pthread_cond_broadcast (pthread_cond_t * cond);

/*
 * Scheduling
 */
PTW32_DLLPORT int pthread_setschedparam (pthread_t thread,
				   int policy,
				   const struct sched_param *param);

PTW32_DLLPORT int pthread_getschedparam (pthread_t thread,
				   int *policy,
				   struct sched_param *param);

PTW32_DLLPORT int pthread_setconcurrency (int);
 
PTW32_DLLPORT int pthread_getconcurrency (void);

/*
 * Read-Write Lock Functions
 */
PTW32_DLLPORT int pthread_rwlock_init(pthread_rwlock_t *lock,
				const pthread_rwlockattr_t *attr);

PTW32_DLLPORT int pthread_rwlock_destroy(pthread_rwlock_t *lock);

PTW32_DLLPORT int pthread_rwlock_tryrdlock(pthread_rwlock_t *);

PTW32_DLLPORT int pthread_rwlock_trywrlock(pthread_rwlock_t *);

PTW32_DLLPORT int pthread_rwlock_rdlock(pthread_rwlock_t *lock);

PTW32_DLLPORT int pthread_rwlock_timedrdlock(pthread_rwlock_t *lock,
				       const struct timespec *abstime);

PTW32_DLLPORT int pthread_rwlock_wrlock(pthread_rwlock_t *lock);

PTW32_DLLPORT int pthread_rwlock_timedwrlock(pthread_rwlock_t *lock,
				       const struct timespec *abstime);

PTW32_DLLPORT int pthread_rwlock_unlock(pthread_rwlock_t *lock);

PTW32_DLLPORT int pthread_rwlockattr_init (pthread_rwlockattr_t * attr);

PTW32_DLLPORT int pthread_rwlockattr_destroy (pthread_rwlockattr_t * attr);

PTW32_DLLPORT int pthread_rwlockattr_getpshared (const pthread_rwlockattr_t * attr,
					   int *pshared);

PTW32_DLLPORT int pthread_rwlockattr_setpshared (pthread_rwlockattr_t * attr,
					   int pshared);

#if PTW32_LEVEL >= PTW32_LEVEL_MAX - 1

/*
 * Signal Functions. Should be defined in <signal.h> but MSVC and MinGW32
 * already have signal.h that don't define these.
 */
PTW32_DLLPORT int pthread_kill(pthread_t thread, int sig);

/*
 * Non-portable functions
 */

/*
 * Compatibility with Linux.
 */
PTW32_DLLPORT int pthread_mutexattr_setkind_np(pthread_mutexattr_t * attr,
					 int kind);
PTW32_DLLPORT int pthread_mutexattr_getkind_np(pthread_mutexattr_t * attr,
					 int *kind);

/*
 * Possibly supported by other POSIX threads implementations
 */
PTW32_DLLPORT int pthread_delay_np (struct timespec * interval);
PTW32_DLLPORT int pthread_num_processors_np(void);

/*
 * Useful if an application wants to statically link
 * the lib rather than load the DLL at run-time.
 */
PTW32_DLLPORT int pthread_win32_process_attach_np(void);
PTW32_DLLPORT int pthread_win32_process_detach_np(void);
PTW32_DLLPORT int pthread_win32_thread_attach_np(void);
PTW32_DLLPORT int pthread_win32_thread_detach_np(void);

/*
 * Register a system time change with the library.
 * Causes the library to perform various functions
 * in response to the change. Should be called whenever
 * the application's top level window receives a
 * WM_TIMECHANGE message. It can be passed directly to
 * pthread_create() as a new thread if desired.
 */
PTW32_DLLPORT void * pthread_timechange_handler_np(void *);

#endif /*PTW32_LEVEL >= PTW32_LEVEL_MAX - 1 */

#if PTW32_LEVEL >= PTW32_LEVEL_MAX

/*
 * Returns the Win32 HANDLE for the POSIX thread.
 */
PTW32_DLLPORT HANDLE pthread_getw32threadhandle_np(pthread_t thread);


/*
 * Protected Methods
 *
 * This function blocks until the given WIN32 handle
 * is signaled or pthread_cancel had been called.
 * This function allows the caller to hook into the
 * PThreads cancel mechanism. It is implemented using
 *
 *		WaitForMultipleObjects
 *
 * on 'waitHandle' and a manually reset WIN32 Event
 * used to implement pthread_cancel. The 'timeout'
 * argument to TimedWait is simply passed to
 * WaitForMultipleObjects.
 */
PTW32_DLLPORT int pthreadCancelableWait (HANDLE waitHandle);
PTW32_DLLPORT int pthreadCancelableTimedWait (HANDLE waitHandle,
					DWORD timeout);

#endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */

/*
 * Thread-Safe C Runtime Library Mappings.
 */
#ifndef _UWIN
#  if defined(NEED_ERRNO)
     PTW32_DLLPORT int * _errno( void );
#  else
#    ifndef errno
#      if (defined(_MT) || defined(_DLL))
	 __declspec(dllimport) extern int * __cdecl _errno(void);
#	 define errno	(*_errno())
#      endif
#    endif
#  endif
#endif

/*
 * WIN32 C runtime library had been made thread-safe
 * without affecting the user interface. Provide
 * mappings from the UNIX thread-safe versions to
 * the standard C runtime library calls.
 * Only provide function mappings for functions that
 * actually exist on WIN32.
 */

#if !defined(__MINGW32__)
#define strtok_r( _s, _sep, _lasts ) \
	( *(_lasts) = strtok( (_s), (_sep) ) )
#endif /* !__MINGW32__ */

#define asctime_r( _tm, _buf ) \
	( strcpy( (_buf), asctime( (_tm) ) ), \
	  (_buf) )

#define ctime_r( _clock, _buf ) \
	( strcpy( (_buf), ctime( (_clock) ) ),	\
	  (_buf) )

#define gmtime_r( _clock, _result ) \
	( *(_result) = *gmtime( (_clock) ), \
	  (_result) )

#define localtime_r( _clock, _result ) \
	( *(_result) = *localtime( (_clock) ), \
	  (_result) )

#define rand_r( _seed ) \
	( _seed == _seed? rand() : rand() )


#ifdef __cplusplus

/*
 * Internal exceptions
 */
class ptw32_exception {};
class ptw32_exception_cancel : public ptw32_exception {};
class ptw32_exception_exit   : public ptw32_exception {};

#endif

#if PTW32_LEVEL >= PTW32_LEVEL_MAX

/* FIXME: This is only required if the library was built using SEH */
/*
 * Get internal SEH tag
 */
PTW32_DLLPORT DWORD ptw32_get_exception_services_code(void);

#endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */

#ifndef PTW32_BUILD

#ifdef __CLEANUP_SEH

/*
 * Redefine the SEH __except keyword to ensure that applications
 * propagate our internal exceptions up to the library's internal handlers.
 */
#define __except( E ) \
	__except( ( GetExceptionCode() == ptw32_get_exception_services_code() ) \
		 ? EXCEPTION_CONTINUE_SEARCH : ( E ) )

#endif /* __CLEANUP_SEH */

#ifdef __CLEANUP_CXX

/*
 * Redefine the C++ catch keyword to ensure that applications
 * propagate our internal exceptions up to the library's internal handlers.
 */
#ifdef _MSC_VER
	/*
	 * WARNING: Replace any 'catch( ... )' with 'PtW32CatchAll'
	 * if you want Pthread-Win32 cancelation and pthread_exit to work.
	 */

#ifndef PtW32NoCatchWarn

#pragma message("Specify \"/DPtW32NoCatchWarn\" compiler flag to skip this message.")
#pragma message("------------------------------------------------------------------")
#pragma message("When compiling applications with MSVC++ and C++ exception handling:")
#pragma message("  Replace any 'catch( ... )' in routines called from POSIX threads")
#pragma message("  with 'PtW32CatchAll' or 'CATCHALL' if you want POSIX thread")
#pragma message("  cancelation and pthread_exit to work. For example:")
#pragma message("")
#pragma message("    #ifdef PtW32CatchAll")
#pragma message("      PtW32CatchAll")
#pragma message("    #else")
#pragma message("      catch(...)")
#pragma message("    #endif")
#pragma message("	 {")
#pragma message("	   /* Catchall block processing */")
#pragma message("	 }")
#pragma message("------------------------------------------------------------------")

#endif

#define PtW32CatchAll \
	catch( ptw32_exception & ) { throw; } \
	catch( ... )

#else /* _MSC_VER */

#define catch( E ) \
	catch( ptw32_exception & ) { throw; } \
	catch( E )

#endif /* _MSC_VER */

#endif /* __CLEANUP_CXX */

#endif /* ! PTW32_BUILD */

#ifdef __cplusplus
}				/* End of extern "C" */
#endif				/* __cplusplus */

#ifdef PTW32__HANDLE_DEF
# undef HANDLE
#endif
#ifdef PTW32__DWORD_DEF
# undef DWORD
#endif

#undef PTW32_LEVEL
#undef PTW32_LEVEL_MAX

#endif /* PTHREAD_H */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美少妇bbb| 亚洲精品中文字幕在线观看| 欧美韩国日本不卡| 午夜精品123| 成人精品在线视频观看| 欧美高清视频一二三区 | 国产精品一区二区男女羞羞无遮挡| 粉嫩嫩av羞羞动漫久久久| 欧美刺激脚交jootjob| 亚洲人123区| 国产成人综合精品三级| 欧美精品一级二级| 尤物av一区二区| 9久草视频在线视频精品| 精品va天堂亚洲国产| 亚洲大片免费看| 日本高清不卡视频| 国产精品久久久久久久久免费丝袜 | 久久久综合九色合综国产精品| 亚洲精品中文在线观看| 不卡一区二区三区四区| 久久亚洲精品小早川怜子| 日本网站在线观看一区二区三区| 欧美少妇性性性| 亚洲综合图片区| 在线欧美一区二区| 亚洲一区二区在线免费看| 99久久er热在这里只有精品15| 久久久91精品国产一区二区精品| 蜜臀av性久久久久蜜臀aⅴ流畅 | 在线欧美日韩精品| 久久精品噜噜噜成人88aⅴ| 91久久国产最好的精华液| 专区另类欧美日韩| 91丨porny丨最新| 亚洲欧美日韩国产综合| 97久久精品人人澡人人爽| 国产精品久久毛片a| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 国产白丝精品91爽爽久久| 26uuu亚洲| 高清不卡一二三区| 亚洲同性gay激情无套| 99re热视频这里只精品| 亚洲精品成a人| 欧美午夜电影在线播放| 日韩国产欧美三级| 久久婷婷色综合| hitomi一区二区三区精品| 一区二区三区.www| 在线播放一区二区三区| 国产一区日韩二区欧美三区| 国产欧美精品一区二区色综合| 国产成人精品网址| 亚洲欧美成aⅴ人在线观看| 欧洲精品一区二区| 美女视频免费一区| 中文字幕欧美国产| 欧美视频精品在线观看| 激情国产一区二区| 中文字幕日韩一区| 欧美一区二区视频在线观看2020| 精品一区二区三区免费| 国产精品不卡视频| 欧美一级xxx| 菠萝蜜视频在线观看一区| 亚洲自拍偷拍网站| 久久精品免视看| 在线观看一区不卡| 国产黑丝在线一区二区三区| 亚洲视频综合在线| 日韩女优视频免费观看| 不卡一二三区首页| 奇米影视一区二区三区小说| 国产精品传媒视频| 日韩一级片网址| 99热在这里有精品免费| 奇米影视在线99精品| 亚洲色图视频免费播放| 日韩美女一区二区三区四区| 91啪九色porn原创视频在线观看| 日韩国产欧美视频| 亚洲精选视频免费看| 久久嫩草精品久久久精品| 色哟哟精品一区| 国产精品一线二线三线精华| 午夜欧美2019年伦理| 亚洲欧洲成人精品av97| 精品国产污污免费网站入口| 欧美亚洲综合另类| 97精品国产露脸对白| 国产中文一区二区三区| 一本色道久久综合亚洲91| 激情综合网最新| 日本成人中文字幕| 偷拍日韩校园综合在线| 亚洲男人都懂的| 国产女主播视频一区二区| 678五月天丁香亚洲综合网| 色综合天天视频在线观看| 国产成人午夜精品影院观看视频| 青青青爽久久午夜综合久久午夜| 亚洲夂夂婷婷色拍ww47 | 成人黄色在线视频| 国产精品一区二区在线播放 | 一区二区三区四区在线免费观看| 久久久噜噜噜久噜久久综合| 日韩欧美另类在线| 日韩一区二区三区av| 欧美日韩成人在线| 欧美日韩国产综合一区二区三区 | 国产一区二区精品在线观看| 日本aⅴ亚洲精品中文乱码| 一区二区三区国产豹纹内裤在线 | 欧美色老头old∨ideo| 91视频国产观看| 91久久奴性调教| 99re这里只有精品首页| 91丨九色丨尤物| 91看片淫黄大片一级| 色综合网色综合| 欧美性猛交xxxxxx富婆| 欧美亚洲精品一区| 91精品国产色综合久久ai换脸| 欧美丝袜丝交足nylons| 8x8x8国产精品| 欧美va亚洲va| 久久精品一级爱片| 亚洲欧洲99久久| 亚洲国产一区视频| 毛片av一区二区三区| 国产成人在线免费观看| 国产成人午夜高潮毛片| 91老司机福利 在线| 欧美日韩日日夜夜| 久久美女艺术照精彩视频福利播放| 久久综合久久99| 亚洲欧洲日产国产综合网| 亚洲一区二区三区激情| 免费欧美日韩国产三级电影| 国产一区二区三区蝌蚪| 91在线码无精品| 欧美精品乱码久久久久久| 欧美大片一区二区| 国产精品视频一二三区 | 国产欧美精品国产国产专区 | 欧美国产欧美亚州国产日韩mv天天看完整| 国产精品区一区二区三区| 亚洲一区免费在线观看| 美女脱光内衣内裤视频久久网站| 国产不卡一区视频| 欧美日韩国产影片| 久久久www成人免费无遮挡大片| 国产精品视频观看| 三级在线观看一区二区 | 91同城在线观看| 日韩欧美国产1| 综合电影一区二区三区 | 99久久精品免费看国产免费软件| 欧美日韩一区精品| 中文字幕二三区不卡| 日本va欧美va精品发布| 99久久精品久久久久久清纯| 日韩视频在线永久播放| 亚洲精品中文字幕在线观看| 国产高清精品久久久久| 欧美视频一区在线| 中文字幕亚洲成人| 蜜桃久久av一区| 欧美日韩亚洲丝袜制服| 亚洲欧美综合另类在线卡通| 国产伦精品一区二区三区视频青涩| 欧洲另类一二三四区| 一区精品在线播放| 高清久久久久久| 精品88久久久久88久久久| 亚洲6080在线| 91极品美女在线| 国产精品伦理在线| 国产乱码一区二区三区| 3d成人h动漫网站入口| 亚洲精品日韩一| 成人avav影音| 国产日韩欧美a| 国产伦精品一区二区三区免费迷| 这里只有精品电影| 一区二区三区色| 成人黄色电影在线 | 亚洲一区二区视频在线观看| 成人免费视频一区| 国产欧美日韩麻豆91| 国产在线国偷精品免费看| 日韩欧美国产一区二区在线播放 | 91日韩一区二区三区| 国产精品女上位| 99精品久久99久久久久| 国产精品你懂的在线欣赏| 不卡av电影在线播放| 亚洲欧美电影院| 欧美三级视频在线播放|