on_exitのヘルプ・マニュアル
日本語 英語
on_exit --help
man on_exit
ON_EXIT(3) Linux Programmer’s Manual ON_EXIT(3)
名前
on_exit - プロセスが正常に終了した際に呼ばれる関数を登録する
書式
#include
int on_exit(void (*function)(int , void *), void *arg);
glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):
on_exit(): _BSD_SOURCE || _SVID_SOURCE
説明
on_exit() 関数は、指定された関数 function を、プロセスが正常に終了した
際に呼ばれる関数として登録する。正常な終了とは、 exit(3) またはプログラ
ム の main() 関数の中の return 命令による終了である。関数 function には
、直近の exit(3) の呼び出しで渡された status 引数と on_exit() の arg 引
数が渡される。
同 じ関数を複数回登録してもよい。登録された関数は登録 1 回につき 1 回呼
び出される。
fork(2) 経由で作成された子プロセスは、親プロセスの登録のコピーを継承 す
る。 exec(3) 群の関数の呼び出しに成功すると、全ての登録が削除される。
返り値
on_exit() 関数は、成功したら 0 を、そうでなければ 0 以外を返す。
準拠
こ の 関 数 は SunOS 4 由来であるが、libc4, libc5, glibc にも存在する。
Solaris (SunOS 5) にはもはや存在しない。この関数の使用は避け、代わり に
標準の atexit(3) を使うこと。
関連項目
_exit(2), atexit(3), exit(3)
GNU 2008-12-05 ON_EXIT(3)
ON_EXIT(3) Linux Programmer’s Manual ON_EXIT(3)
NAME
on_exit - register a function to be called at normal process termina-
tion
SYNOPSIS
#include
int on_exit(void (*function)(int , void *), void *arg);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
on_exit(): _BSD_SOURCE || _SVID_SOURCE
DESCRIPTION
The on_exit() function registers the given function to be called at
normal process termination, whether via exit(3) or via return from the
program’s main(). The function is passed the status argument given to
the last call to exit(3) and the arg argument from on_exit().
The same function may be registered multiple times: it is called once
for each registration.
When a child process is created via fork(2), it inherits copies of its
parent’s registrations. Upon a successful call to one of the exec(3)
functions, all registrations are removed.
RETURN VALUE
The on_exit() function returns the value 0 if successful; otherwise it
returns a non-zero value.
CONFORMING TO
This function comes from SunOS 4, but is also present in libc4, libc5
and glibc. It no longer occurs in Solaris (SunOS 5). Avoid this func-
tion, and use the standard atexit(3) instead.
SEE ALSO
_exit(2), atexit(3), exit(3)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU 2008-12-05 ON_EXIT(3)