📄 ualarm.c
字号:
/*** ualarm.c - ****** Copyright (c) 1993-95 David J. Hughes** Copyright (c) 1995 Hughes Technologies**** Permission to use, copy, and distribute for non-commercial purposes,** is hereby granted without fee, providing that the above copyright** notice appear in all copies and that both the copyright notice and this** permission notice appear in supporting documentation.**** This software is provided "as is" without any expressed or implied warranty.***/#ifndef lintstatic char RCSid[] = "ualarm.c,v 1.2 1994/07/05 02:01:00 bambi Exp";#endif #include<sys/time.h>#include <common/portability.h>#ifndef HAVE_UALARMualarm(val, interval) unsigned val, interval;{ struct itimerval value; value.it_interval.tv_sec = 0; value.it_interval.tv_usec = (long) interval; value.it_value.tv_sec = 0; value.it_value.tv_usec = (long) val; setitimer(ITIMER_REAL,&value,(struct itimerval *)0);}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -