Путеводитель по Руководству Linux

  User  |  Syst  |  Libr  |  Device  |  Files  |  Other  |  Admin  |  Head  |



   abort.3p    ( 3 )

генерировать аварийное прерывание процесса (generate an abnormal process abort)

Пролог (Prolog)

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.


Имя (Name)

abort — generate an abnormal process abort


Синопсис (Synopsis)

#include <stdlib.h>

void abort(void);


Описание (Description)

The functionality described on this reference page is aligned with the ISO C standard. Any conflict between the requirements described here and the ISO C standard is unintentional. This volume of POSIX.1‐2017 defers to the ISO C standard.

The abort() function shall cause abnormal process termination to occur, unless the signal SIGABRT is being caught and the signal handler does not return.

The abnormal termination processing shall include the default actions defined for SIGABRT and may include an attempt to effect fclose() on all open streams.

The SIGABRT signal shall be sent to the calling process as if by means of raise() with the argument SIGABRT.

The status made available to wait(), waitid(), or waitpid() by abort() shall be that of a process terminated by the SIGABRT signal. The abort() function shall override blocking or ignoring the SIGABRT signal.


Возвращаемое значение (Return value)

The abort() function shall not return.


Ошибки (Error)

No errors are defined.

The following sections are informative.


Примеры (Examples)

None.

Использование в приложениях (Application usage)

Catching the signal is intended to provide the application developer with a portable means to abort processing, free from possible interference from any implementation-supplied functions.


Обоснование (Rationale)

The ISO/IEC 9899:1999 standard requires the abort() function to be async-signal-safe. Since POSIX.1‐2008 defers to the ISO C standard, this required a change to the DESCRIPTION from ``shall include the effect of fclose()'' to ``may include an attempt to effect fclose().''

The revised wording permits some backwards-compatibility and avoids a potential deadlock situation.

The Open Group Base Resolution bwg2002‐003 is applied, removing the following XSI shaded paragraph from the DESCRIPTION:

``On XSI-conformant systems, in addition the abnormal termination processing shall include the effect of fclose() on message catalog descriptors.''

There were several reasons to remove this paragraph:

* No special processing of open message catalogs needs to be performed prior to abnormal process termination.

* The main reason to specifically mention that abort() includes the effect of fclose() on open streams is to flush output queued on the stream. Message catalogs in this context are read-only and, therefore, do not need to be flushed.

* The effect of fclose() on a message catalog descriptor is unspecified. Message catalog descriptors are allowed, but not required to be implemented using a file descriptor, but there is no mention in POSIX.1‐2008 of a message catalog descriptor using a standard I/O stream FILE object as would be expected by fclose().


Будущие направления (Future directions)

None.


Смотри также (See also)

exit(3p), kill(3p), raise(3p), signal(3p), wait(3p), waitid(3p)

The Base Definitions volume of POSIX.1‐2017, stdlib.h(0p)