Linux应用层定时器
alarmalarm会设置一个定时器,当时间到期后会触发SIGALRM信号,该信号可能会打断系统调用的执行,它使用的定时器和setitimer对应的ITIMER_REAL是同一个。#include <stdio.h>#include <stdlib.h>#include <fcntl.h>#include <unistd.h>#inclu...