代码拉取完成,页面将自动刷新
同步操作将从 yuanhack/sarudp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include "yhtime.h"
void maketimeout_minutes(struct timespec *tsp, long minutes)
{
struct timeval now;
gettimeofday(&now, NULL);
tsp->tv_sec = now.tv_sec + minutes * 60;
tsp->tv_nsec = now.tv_usec * 1000;
}
void maketimeout_seconds(struct timespec *tsp, long seconds)
{
struct timeval now;
gettimeofday(&now, NULL);
tsp->tv_sec = now.tv_sec + seconds;
tsp->tv_nsec = now.tv_usec * 1000;
}
void maketimeout_milliseconds(struct timespec *tsp, long millisconds)
{
struct timeval now;
gettimeofday(&now, NULL);
tsp->tv_sec = now.tv_sec + millisconds / 1000;
tsp->tv_nsec = now.tv_usec * 1000 + millisconds % 1000 * 1000000;
}
void maketimeout_microsecond(struct timespec *tsp, long microsecond)
{
struct timeval now;
gettimeofday(&now, NULL);
tsp->tv_sec = now.tv_sec + microsecond / 1000000;
tsp->tv_nsec = now.tv_usec * 1000 + microsecond % 1000000 * 1000;
}
void maketimeout_nanoseconds(struct timespec *tsp, long nanoseconds)
{
struct timeval now;
gettimeofday(&now, NULL);
tsp->tv_sec = now.tv_sec + nanoseconds / 1000000000UL;
tsp->tv_nsec = now.tv_usec * 1000 + nanoseconds % 1000000000UL;
}
void maketimeout_min(struct timespec *tsp, long minutes)
{
maketimeout_minutes(tsp, minutes);
}
void maketimeout_sec(struct timespec *tsp, long seconds)
{
maketimeout_seconds(tsp, seconds);
}
void maketimeout_msec(struct timespec *tsp, long millisconds)
{
maketimeout_milliseconds(tsp, millisconds);
}
void maketimeout_usec(struct timespec *tsp, long microsecond)
{
maketimeout_microsecond(tsp, microsecond);
}
void maketimeout_nsec(struct timespec *tsp, long nanoseconds)
{
maketimeout_nanoseconds(tsp, nanoseconds);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。