Standard C Library Functions timerdelete(3C)
NAME
timerdelete - delete a timer
SYNOPSIS
#include
int timerdelete(timert timerid);
DESCRIPTION
The timerdelete() function deletes the specified timer,
timerid, previously created by the timercreate(3C) func-
tion. If the timer is armed when timerdelete() is called,
the behavior will be as if the timer is automatically
disarmed before removal. The disposition of pending signals
for the deleted timer is unspecified.
RETURN VALUES
If successful, the function returns 0. Otherwise, the func-
tion returns -1 and sets errno to indicate the error.
ERORS
The timerdelete() function will fail if:
EINVAL The timer ID specified by timerid is not a valid
timer ID.
ENOSYS The timerdelete() function is not supported by
the system.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
SunOS 5.11 Last change: 5 Feb 2008 1
Standard C Library Functions timerdelete(3C)
ATRIBUTE TYPE ATRIBUTE VALUE
Interface Stability Committed
MT-Level MT-Safe with exceptions
Standard See standards(5).
SEE ALSO
timercreate(3C), attributes(5), standards(5)
SunOS 5.11 Last change: 5 Feb 2008 2
|