1TIMER_DELETE(P) POSIX Programmer's Manual TIMER_DELETE(P)
2
3
4
6 timer_delete - delete a per-process timer (REALTIME)
7
9 #include <time.h>
10
11 int timer_delete(timer_t timerid);
12
13
15 The timer_delete() function deletes the specified timer, timerid, pre‐
16 viously created by the timer_create() function. If the timer is armed
17 when timer_delete() is called, the behavior shall be as if the timer is
18 automatically disarmed before removal. The disposition of pending sig‐
19 nals for the deleted timer is unspecified.
20
22 If successful, the timer_delete() function shall return a value of
23 zero. Otherwise, the function shall return a value of -1 and set errno
24 to indicate the error.
25
27 The timer_delete() function shall fail if:
28
29 EINVAL The timer ID specified by timerid is not a valid timer ID.
30
31
32 The following sections are informative.
33
35 None.
36
38 None.
39
41 None.
42
44 None.
45
47 timer_create() , the Base Definitions volume of IEEE Std 1003.1-2001,
48 <time.h>
49
51 Portions of this text are reprinted and reproduced in electronic form
52 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
53 -- Portable Operating System Interface (POSIX), The Open Group Base
54 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
55 Electrical and Electronics Engineers, Inc and The Open Group. In the
56 event of any discrepancy between this version and the original IEEE and
57 The Open Group Standard, the original IEEE and The Open Group Standard
58 is the referee document. The original Standard can be obtained online
59 at http://www.opengroup.org/unix/online.html .
60
61
62
63IEEE/The Open Group 2003 TIMER_DELETE(P)