📄 pasync.cxx
字号:
/* * * C++ Portable Types Library (PTypes) * Version 2.0.2 Released 17-May-2004 * * Copyright (C) 2001-2004 Hovik Melikyan * * http://www.melikyan.com/ptypes/ * */#ifdef WIN32# include <windows.h>#else# include <stdlib.h># include <unistd.h># include <pthread.h># ifdef __sun__# include <poll.h># endif#endif#include "pasync.h"PTYPES_BEGINvoid ptdecl psleep(uint milliseconds){#if defined(WIN32) Sleep(milliseconds);#elif defined(__sun__) poll(0, 0, milliseconds);#else usleep(milliseconds * 1000);#endif}pthread_id_t ptdecl pthrself() {#ifdef WIN32 return (int)GetCurrentThreadId();#else return pthread_self();#endif}bool ptdecl pthrequal(pthread_id_t id){#ifdef WIN32 return GetCurrentThreadId() == (uint)id;#else return pthread_equal(pthread_self(), id);#endif}PTYPES_END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -