我试图用SIGALRM替换sleep()。
#include <signal.h>
#include <unistd.h>
void sig_alrm( int signo )
{
return; /* return to wake up pause */
}
unsigned int sleep1( unsigned int nsecs )
{
if( signal( SIGALRM, sig_alrm ) == SIG_ERR )
return (nsecs);
alarm( nsecs ); /* starts timer */
pause(); /* next caught signal wakes */
return( alarm( 0 ) ); /* turn off timer, return unslept*/
}
这是正确的实现吗?
还有其他的实现吗?
最佳答案
真正的实现必须处理更多的条件:
处理EINTR
。
处理线程取消。
见glibc implementatiop of sleep()。
关于c - 使用SIGALRM实现sleep(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20881020/