OSDN Git Service

LDP: Update original to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man2 / timer_delete.2
1 .\" Copyright (c) 2009 Linux Foundation, written by Michael Kerrisk
2 .\"     <mtk.manpages@gmail.com>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .TH TIMER_DELETE 2 2009-02-20 Linux "Linux Programmer's Manual"
27 .SH NAME
28 timer_delete \- delete a POSIX per-process timer
29 .SH SYNOPSIS
30 .nf
31 .B  #include <time.h>
32
33 .BI "int timer_delete(timer_t " timerid );
34 .fi
35
36 Link with \fI\-lrt\fP.
37 .sp
38 .in -4n
39 Feature Test Macro Requirements for glibc (see
40 .BR feature_test_macros (7)):
41 .in
42 .sp
43 .BR timer_delete ():
44 _POSIX_C_SOURCE\ >=\ 199309L
45 .SH DESCRIPTION
46 .BR timer_delete ()
47 deletes the timer whose ID is given in
48 .IR timerid .
49 If the timer was armed at the time of this call,
50 it is disarmed before being deleted.
51 The treatment of any pending signal generated by the deleted timer
52 is unspecified.
53 .SH RETURN VALUE
54 On success,
55 .BR timer_delete ()
56 returns 0.
57 On failure, \-1 is returned, and
58 .I errno
59 is set to indicate the error.
60 .SH ERRORS
61 .TP
62 .B EINVAL
63 .I timerid
64 is not a valid timer ID.
65 .SH VERSIONS
66 This system call is available since Linux 2.6.
67 .SH CONFORMING TO
68 POSIX.1-2001.
69 .SH SEE ALSO
70 .BR clock_gettime (2),
71 .BR timer_create (2),
72 .BR timer_getoverrun (2),
73 .BR timer_settime (2),
74 .BR time (7)
75 .SH COLOPHON
76 This page is part of release 3.79 of the Linux
77 .I man-pages
78 project.
79 A description of the project,
80 information about reporting bugs,
81 and the latest version of this page,
82 can be found at
83 \%http://www.kernel.org/doc/man\-pages/.