C语言的sleep、usleep、nanosleep等休眠函数的使用

  目录

  昨天晚上,无聊中捣鼓「死循环」小代码的时候,想用 休眠 函数来慢慢显示输出结果,免得输出结果闪得太快,看都看不清。

  但是,使用 sleep 函数的话,最短的休眠时间段是一秒钟,要想看到比较大的输出结果的话,要等好久,于是就查了一下有没有休眠时间段更小的函数。很容易地就找到了两个,一个是 usleep ,一个是 nanosleep 函数。

  因为是第一次使用,尤其是 nanosleep 函数的第一个参数是一个没见过的结构体数据类型,所以花了一点点时间去学习和探索背后的细节,当然了,对于俺目前的水平而言,也只是了解了函数本身层面的浅显的细节而已。

  捣鼓下来,觉得内容也不少,而且还是挺有用的,就整理了一下,组合成文章,发布在这里,也方便自己以后的回顾学习。

  引子

  一个无聊的死循环小代码:

  #include

  int main(int argc, char const *argv[])

  {

  for (char c = 0; c < 128; c++) {

  printf("cool

  ");

  }

  return 0;

  }

  以及 运行过程 展示版:

  #include

  #include

  #include

  #include

  int main(int argc, char const *argv[])

  {

  struct timespec n_sleep;

  n_sleep.tv_sec = 0; //secondes, integer part sleep duration

  n_sleep.tv_nsec = 5e8L; //nanoseconds, decimal part sleep duration

  char c;

  for (c = 0; c < 128; c++) {

  printf("char of c :%c

  ", c);

  printf("ASCII num of c :%d

  ", c);

  sleep(1); // 1 s

  usleep(900000); // 0.9 s

  nanosleep(&n_sleep, NULL); // 0 + 0.5 s

  }

  return 0;

  }

  另外,推荐一下 clang 这款编译器,

  它的(1)错误、(2)警告 提示非常直观、准确、体贴。

  比如,上面的死循环代码,编译之后,它就贴心地显示了一个警告:

  result of comparison of constant 128 with expression of type 'char' is always true

  [-Wtautological-constant-out-of-range-compare]

  for (c = 0; c < 128; c++) {

  ~ ^ ~~~

  强烈推荐啊!!!

  当然,如果还是喜欢或者必须使用 gcc 的话,建议可以将 clang 作为一个辅助选项。

  (一) sleep 函数

  头文件 unistd.h

  头文件 unistd.h 中的原文如下:

  /* Make the process sleep for SECONDS seconds, or until a signal arrives

  and is not ignored.  The function returns the number of seconds less

  than SECONDS which it actually slept (thus zero if it slept the full time).

  If a signal handler does a `longjmp' or modifies the handling of the

  SIGALRM signal while inside `sleep' call, the handling of the SIGALRM

  signal afterwards is undefined.  There is no return value to indicate

  error, but if `sleep' returns SECONDS, it probably didn't work.

  This function is a cancellation point and therefore not marked with

  __THROW.  */

  extern unsigned int sleep (unsigned int __seconds);

  通过debug的方式,进入 sleep 函数本体内部,可以反向查找到 sleep 函数所在的具体文件是 /glibc-2.23/sysdeps/posix/sleep.c 。

  (根据gcc版本的不同,上面的库函数版本号 glibc-2.23 有所不同。)

  源文件 sleep.c

  sleep 函数的原型代码如下:

  #include

  #include

  #include

  #include

  /* Make the process sleep for SECONDS seconds, or until a signal arrives

  and is not ignored.  The function returns the number of seconds less

  than SECONDS which it actually slept (zero if it slept the full time).

  If a signal handler does a `longjmp' or modifies the handling of the

  SIGALRM signal while inside `sleep' call, the handling of the SIGALRM

  signal afterwards is undefined.  There is no return value to indicate

  error, but if `sleep' returns SECONDS, it probably didn't work.  */

  unsigned int __sleep(unsigned int seconds)

  {

  int save_errno = errno;

  const unsigned int max =

  (unsigned int)(((unsigned long int)(~((time_t)0))) >> 1);

  struct timespec ts = { 0, 0 };

  do {

  if (sizeof(ts.tv_sec) <= sizeof(seconds)) {

  /* Since SECONDS is unsigned assigning the value to .tv_sec can

  overflow it.  In this case we have to wait in steps.  */

  ts.tv_sec += MIN(seconds, max);

  seconds -= (unsigned int)ts.tv_sec;

  } else {

  ts.tv_sec = (time_t)seconds;

  seconds = 0;

  }

  if (__nanosleep(&ts, &ts) < 0)

  /* We were interrupted.

  Return the number of (whole) seconds we have not yet slept.  */

  return seconds + ts.tv_sec;

  } while (seconds > 0);

  __set_errno(save_errno);

  return 0;

  }

  weak_alias(__sleep, sleep)

  sleep 函数的用法

  简单地说, sleep 函数实现的功能是 让程序休眠若干秒钟,时间的最小刻度是「秒」。

  extern unsigned int sleep (unsigned int __seconds);

  sleep 函数的返回值

  sleep 函数的参数

  所以, sleep 函数,使 进程/process 休眠的最短时间段,是一秒钟。

  (二) usleep 函数

  头文件 unistd.h

  头文件 unistd.h 中的原文如下:

  /* Sleep USECONDS microseconds, or until a signal arrives that is not blocked

  or ignored.

  This function is a cancellation point and therefore not marked with

  __THROW.  */

  extern int usleep (__useconds_t __useconds);

  查找上面的 sleep.c 文件的时候,在 find 命令的结果中看到了 usleep.c 文件和 sleep.c 文件位于同一个文件夹:

  /glibc-2.23/sysdeps/posix/sleep.c 。

  (根据gcc版本的不同,上面的库函数版本号 glibc-2.23 有所不同。)

  源文件 usleep.c

  usleep 函数的原型代码如下:

  #include

  #include

  int

  usleep (useconds_t useconds)

  {

  struct timespec ts = { .tv_sec = (long int) (useconds / 1000000),

  .tv_nsec = (long int) (useconds % 1000000) * 1000ul };

  /* Note the usleep() is a cancellation point.  But since we call

  nanosleep() which itself is a cancellation point we do not have

  to do anything here.  */

  return __nanosleep (&ts, NULL);

  }

  名称 usleep 的第一个字母 u 代表的是时间单位 微秒 的第一个字母。

  虽然实际上是希腊字母的 μ ,但英语键盘里不方便敲出这个字母,所以就用了样子相似的英文字母 u 。

  时间单位 微秒 的英文单词是 microsecond ,是由词根 micro 和 second 组合而成的单词。

  微秒 是 10的负6次方 秒。

  另外,还有一个以字母 m 开头的时间单位的英文单词 millisecond ,意思是 毫秒 ,也就是 千分之一秒。

  注意,区分 micro 和 milli ,一个是 微 ,一个是 毫 。

  usleep 函数的用法

  简单地说, usleep 函数实现的功能是 让程序休眠若干「微秒」,时间的最小刻度是「微秒」,10的负6次方 秒。

  /* Sleep USECONDS microseconds, or until a signal arrives that is not blocked

  or ignored.

  This function is a cancellation point and therefore not marked with

  __THROW.  */

  extern int usleep (__useconds_t __useconds);

  usleep 函数的返回值

  网上查到的是:成功返回0,出错返回-1。

  usleep 函数的参数

  所以, usleep 函数,使 进程/process 休眠的最短时间段,是一微秒。

  (三) nanosleep 函数

  头文件 time.h

  这个 time.h 头文件的路径是 /glibc/time/time.h 。

  在C语言自带的库目录里面,有好几个不同目录下的 time.h 文件,只有这个才是定义了 nanosleep 函数的。

  也不知道,编译器在预处理阶段去获取的 time.h 到底是哪个? 或者说,全部都获取过来了?

  头文件 time.h 中的原文如下:

  /* Pause execution for a number of nanoseconds.

  This function is a cancellation point and therefore not marked with

  __THROW.  */

  extern int nanosleep (const struct timespec *__requested_time,

  struct timespec *__remaining);

  函数名称的 nano 是 纳米、纳秒 等计量单位的开头字母,一纳秒是10的负9次方 秒,是10的负6次方 毫秒,是10的负3次方 微秒。

  源文件 nanosleep.c

  下面是这个路径 /glibc/posix/nanosleep.c 的文件内容。

  在C语言自带的函数库中搜索 nanosleep ,出来的结果同样有好几个,暂时分不清到底是哪个,先采用了这个。

  nanosleep 函数的原型代码如下:

  #include

  #include

  /* Pause execution for a number of nanoseconds.  */

  int

  __nanosleep (const struct timespec *requested_time,

  struct timespec *remaining)

  {

  __set_errno (ENOSYS);

  return -1;

  }

  stub_warning (nanosleep)

  hidden_def (__nanosleep)

  weak_alias (__nanosleep, nanosleep)

  nanosleep 函数的用法

  简单地说, nanosleep 函数实现的功能是 让程序休眠若干「纳秒」,时间的最小刻度是「纳秒」,10的负9次方 秒。

  /* Pause execution for a number of nanoseconds.

  This function is a cancellation point and therefore not marked with

  __THROW.  */

  extern int nanosleep (const struct timespec *__requested_time,

  struct timespec *__remaining);

  nanosleep 函数的返回值

  网上查到的是:成功返回0,出错返回-1。

  这个函数功能是暂停某个进程直到你规定的时间后恢复,参数 req 就是你要暂停的时间,其中 req->tv_sec 是以秒为单位,而 tv_nsec 以纳秒为单位(10的-9次方秒)。

  由于调用 nanosleep 是进程进入 TASK_INTERRUPTIBLE ,这种状态是会相应信号而进入 TASK_RUNNING 状态的,这就意味着有可能会没有等到你规定的时间就因为其它信号而唤醒,此时函数返回 -1 ,切换剩余的时间会被记录在 rem 中。

  return值: 若进程暂停到参数 *req 所指定的时间,成功则返回0;若有信号中断则返回-1,并且将剩余微秒数记录在 *rem 中。

  nanosleep 函数的参数

  第一个参数 *__requested_time 的数据类型是 struct timespec ,定义在 time.h 文件中,

  具体是定义在 /glibc/time/bits/types/struct_timespec.h 文件中的。

  文件内容如下:

  #include

  /* POSIX.1b structure for a time value.  This is like a `struct timeval' but

  has nanoseconds instead of microseconds.  */

  struct timespec

  {

  __time_t tv_sec;        /* Seconds.  */

  __syscall_slong_t tv_nsec;    /* Nanoseconds.  */

  };

  对于 struct timespec 数据类型的详细说明如下:

  (昨天晚上上网查资料、自行测试的时候,自己写的英文笔记,请忽略语法疏漏~)

  in header file of C lib, time.h, declaration as below:

  struct timespec; (since C11)

  struct timespec {

  time_t tv_sec; // seconds

  long tv_nsec; // nanoseconds

  };

  Member objects / 结构体成员:

  time_t tv_sec whole seconds (valid values are >= 0)

  long tv_nsec nanoseconds (valid values are [0, 999999999])

  time_t 类型是 long 型,成员 tv_sec 决定 休眠持续时间段的 整数部分:

  member of 「tv_sec」 at the type of 「time_t」,

  aka (also know as) 「long」 type,

  determines the integer part of sleep duration;

  time_t 类型是 long 型,成员 tv_nsec 决定 休眠持续时间段的 小数部分:

  member of 「tv_nsec」 at the type of 「long」,

  and in the range of [0, 999999999] or [0,1e9),

  that means tv_nsec is forever less than 1 second,

  determines the decimal part of sleep duration.

  就算赋值给成员 tv_nsec 的数值直接计算下来超过了一秒,成员 tv_nsec 获得的实际的值也是被取余后的结果。

  even if a value more than 999999999 ns given to tv_nsec,

  actually what tv_nsec will get is a value cut down extra part,

  eg. 1e9L or 100000000 will be cut the high bits and leave 0 to tv_nsec.

  总而言之,整个的休眠时间段是 整数部分的 tv_sec 加上 小数部分的 tv_nsec 组成的。

  so, the whole sleep duration is tv_sec + tv_nsec,

  just as 「integer part + decimal part」 of the whole sleep duration.

  所以, nanosleep 函数,使 进程/process 休眠的最短时间段,是一纳秒。

  注意

  到此这篇关于C语言的sleep、usleep、nanosleep等休眠函数的使用的文章就介绍到这了,更多相关C语言sleep,usleep,nanosleep内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

  您可能感兴趣的文章: