8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3c / ualarm.3c
blob87273ae88ab196a4bdf32dc4ee47de8112d24d77
1 .\" Copyright 2014 Garrett D'Amore <garrett@damore.org>
2 .\"  Copyright (c) 1980 Regents of the University of California.  All rights reserved.  The Berkeley software License Agreement specifies the terms and conditions for redistribution.  Copyright (c) 2002, Sun Microsystems, Inc.  All Rights Reserved  Portions Copyright (c) 1992,
3 .\" X/Open Company Limited  All Rights Reserved
4 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
5 .\" http://www.opengroup.org/bookstore/.
6 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
7 .\"  This notice shall appear on any product containing this material.
8 .Dd "Aug 16, 2014"
9 .Dt UALARM 3C
10 .Os
11 .Sh NAME
12 .Nm ualarm
13 .Nd schedule signal after interval in microseconds
14 .Sh SYNOPSIS
15 .In unistd.h
16 .Ft useconds_t
17 .Fn ualarm "useconds_t useconds" "useconds_t interval"
18 .Sh DESCRIPTION
19 The
20 .Fn ualarm
21 function causes the
22 .Dv SIGALRM
23 signal to be generated for
24 the calling process after the number of real-time microseconds specified by the
25 .Fa useconds
26 argument has elapsed.
27 When the
28 .Fa interval
29 argument is
30 non-zero, repeated timeout notification occurs with a period in microseconds
31 specified by the
32 .Fa interval
33 argument.
34 If the notification signal,
35 .Dv SIGALRM ,
36 is not caught or ignored, the calling process is terminated.
37 .Lp
38 Because of scheduling delays, resumption of execution when the signal is caught
39 may be delayed an arbitrary amount of time.
40 .Lp
41 Interactions between
42 .Fn ualarm
43 and either
44 .Xr alarm 2
46 .Xr sleep 3C
47 are unspecified.
48 .Sh RETURN VALUES
49 The
50 .Fn ualarm
51 function returns the number of microseconds remaining from
52 the previous
53 .Fn ualarm
54 call.
55 If no timeouts are pending or if
56 .Fn ualarm
57 has not previously been called,
58 .Fn ualarm
59 returns 0.
60 .Sh ERRORS
61 No errors are defined.
62 .Sh USAGE
63 The
64 .Fn ualarm
65 function is a simplified interface to
66 .Xr setitimer 2 ,
67 and uses the
68 .Dv ITIMER_REAL
69 interval timer.
70 It's use has been deprecated in favor of the
71 .Xr timer_create 3C
72 family of functions.
73 .Sh INTERFACE STABILITY
74 .Sy Obsolete Standard .
75 .Sh SEE ALSO
76 .Xr alarm 2 ,
77 .Xr setitimer 2 ,
78 .Xr sighold 3C ,
79 .Xr signal 3C ,
80 .Xr sleep 3C ,
81 .Xr timer_create 3C ,
82 .Xr usleep 3C ,
83 .Xr unistd.h 3HEAD ,
84 .Xr standards 5
85 .Sh STANDARDS
86 The
87 .Fn ualarm
88 function is available in the following compilation environments.
89 See
90 .Xr standards 5 .
91 .Lp
92 .Bl -bullet -compact
93 .\".It
94 .\".St -p1003.1-90
95 .\".It
96 .\".St -p1003.1b-93
97 .\".It
98 .\".St -p1003.1c-95
99 .\".It
100 .\".St -p1003.1-2001
101 .\".It
102 .\".St -xpg3
103 .\".It
104 .\".St -xpg4
106 .St -xpg4.2
108 .St -susv2
110 .St -susv3
113 It is marked obsolete in
114 .St -susv3 , and was removed from
115 .St -p1003.1-2008 .