xref: /illumos-gate/usr/src/man/man2/pause.2 (revision 81b2d5738d8e67bdf2438cd3e8c79f379bce44d2)
te
Copyright 1989 AT&T Copyright (c) 1997, Sun Microsystems, Inc. All Rights Reserved
The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
pause 2 "28 Dec 1996" "SunOS 5.11" "System Calls"
NAME
pause - suspend process until signal
SYNOPSIS

#include <unistd.h>

int pause(void);
DESCRIPTION

The pause() function suspends the calling process until it receives a signal. The signal must be one that is not currently set to be ignored by the calling process.

If the signal causes termination of the calling process, pause() does not return.

If the signal is caught by the calling process and control is returned from the signal-catching function (see signal(3C)), the calling process resumes execution from the point of suspension.

RETURN VALUES

Since pause() suspends thread execution indefinitely unless interrupted by a signal, there is no successful completion return value. If interrupted, it returns -1 and sets errno to indicate the error.

ERRORS

The pause() function will fail if:

EINTR

A signal is caught by the calling process and control is returned from the signal-catching function.

ATTRIBUTES

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPEATTRIBUTE VALUE
Interface StabilityStandard
MT-LevelAsync-Signal-Safe
SEE ALSO

alarm(2), kill(2), signal(3C), wait(3C), attributes(5), standards(5)