1 Star 1 Fork 3

小众镜像/ngrok-c

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mytime.h 589 Bytes
一键复制 编辑 原始数据 按行查看 历史
奇客 提交于 2018-05-08 11:11 . ..
#ifndef __MYTIME_H__
#define __MYTIME_H__
#if WIN32
#include <windows.h>
#else
#include <errno.h>
#include <sys/select.h>
#include <netinet/in.h>
inline void milliseconds_sleep( unsigned long mSec )
{
struct timeval tv;
tv.tv_sec = mSec / 1000;
tv.tv_usec = (mSec % 1000) * 1000;
int err;
do
{
err = select( 0, NULL, NULL, NULL, &tv );
}
while ( err < 0 && errno == EINTR );
}
#endif
inline void sleeps(int ti)
{
#if WIN32
Sleep( ti);
#else
milliseconds_sleep( ti);
#endif
}
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/OtherCopy/ngrok-c.git
[email protected]:OtherCopy/ngrok-c.git
OtherCopy
ngrok-c
ngrok-c
master

搜索帮助