ualarm.c
来自「uClinux下用的数据库」· C语言 代码 · 共 48 行
C
48 行
/*** 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 + =
减小字号Ctrl + -
显示快捷键?