最近在开发项目的时候遇到一个问题,当使用 sleep(2) 的时候,程序居然没有按照指定的时间去休眠,但是连续执行两次 sleep(2) 的时候,程序可以正常的休眠 2 秒.真是见鬼了.最后查看了以下 sleep 函数的 man 手册,找到了原因. man 手册如下: SYNOPSIS #include <unistd.h> unsigned int sleep(unsigned int seconds); DESCRIPTION The sleep() function suspends e
转自:http://blog.sina.com.cn/s/blog_6739945f0100zt4b.html 在 Linux 下,不管你是启动一个桌面程序也好,还是在控制台下运行命令,所有的程序在结束时,都会返回一个数字值,这个值叫做返回值,或者称为错误号 ( Error Number ). 在控制台下,有一个特殊的环境变量 $?,保存着前一个程序的返回值,我们可以试试: $ ls *.pngDiagram1.png eqn.png peazip.pngeqn4.png
IBM AIX上 select返回值的 man if a connect-based socket is specified in the readlist parameter and the connection disconnects, the select subroutine returns successfully,but the recv subroutine on the socket will return a value of 0 to indicate the socke