#, fuzzy msgid "" msgstr "" "Project-Id-Version: man-pages-l10n VERSION\n" "POT-Creation-Date: 2014-07-17 17:58+0900\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: TH #: man-pages-posix/man3p/atexit.3p:2 #, no-wrap msgid "ATEXIT" msgstr "" #. type: TH #: man-pages-posix/man3p/atexit.3p:2 #, no-wrap msgid "2013" msgstr "" #. type: TH #: man-pages-posix/man3p/atexit.3p:2 #, no-wrap msgid "IEEE/The Open Group" msgstr "" #. type: TH #: man-pages-posix/man3p/atexit.3p:2 #, no-wrap msgid "POSIX Programmer's Manual" msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:3 #, no-wrap msgid "PROLOG" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:8 msgid "" "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." msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:9 #, no-wrap msgid "NAME" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:12 msgid "atexit \\(em register a function to run at process termination" msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:12 #, no-wrap msgid "SYNOPSIS" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:16 #, no-wrap msgid "#include Estdlib.hE\n" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:18 #, no-wrap msgid "int atexit(void (*I)(void));\n" msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:19 #, no-wrap msgid "DESCRIPTION" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:23 msgid "" "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\\(hy2008 defers to " "the ISO\\ C standard." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:38 msgid "" "The I() function shall register the function pointed to by I, " "to be called without arguments at normal program termination. At normal " "program termination, all functions registered by the I() function " "shall be called, in the reverse order of their registration, except that a " "function is called after any previously registered functions that had " "already been called at the time it was registered. Normal termination " "occurs either by a call to I() or a return from I
()." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:41 msgid "At least 32 functions can be registered with I()." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:47 msgid "" "After a successful call to any of the I functions, any functions " "previously registered by I() shall no longer be registered." msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:47 #, no-wrap msgid "RETURN VALUE" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:51 msgid "" "Upon successful completion, I() shall return 0; otherwise, it shall " "return a non-zero value." msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:51 #, no-wrap msgid "ERRORS" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:53 msgid "No errors are defined." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:55 msgid "I" msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:55 #, no-wrap msgid "EXAMPLES" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:57 man-pages-posix/man3p/atexit.3p:106 man-pages-posix/man3p/atexit.3p:108 msgid "None." msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:57 #, no-wrap msgid "APPLICATION USAGE" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:61 msgid "" "The functions registered by a call to I() must return to ensure " "that all registered functions are called." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:70 msgid "" "The application should call I() to obtain the value of " "{ATEXIT_MAX}, the number of functions that can be registered. There is no " "way for an application to tell how many functions have already been " "registered with I()." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:81 msgid "" "Since the behavior is undefined if the I() function is called more " "than once, portable applications calling I() must ensure that the " "I() function is not called at normal process termination when all " "functions registered by the I() function are called." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:93 msgid "" "All functions registered by the I() function are called at normal " "process termination, which occurs by a call to the I() function or a " "return from I
() or on the last thread termination, when the behavior " "is as if the implementation called I() with a zero argument at thread " "termination time." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:104 msgid "" "If, at normal process termination, a function registered by the I() " "function is called and a portable application needs to stop further " "I() processing, it must call the I<_exit>() function or the " "I<_Exit>() function or one of the functions which cause abnormal process " "termination." msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:104 #, no-wrap msgid "RATIONALE" msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:106 #, no-wrap msgid "FUTURE DIRECTIONS" msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:108 #, no-wrap msgid "SEE ALSO" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:112 msgid "I\\^, I\\^(\\|), I\\^(\\|)" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:115 msgid "The Base Definitions volume of POSIX.1\\(hy2008, Bstdlib.hE>" msgstr "" #. type: SH #: man-pages-posix/man3p/atexit.3p:115 #, no-wrap msgid "COPYRIGHT" msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:126 msgid "" "Portions of this text are reprinted and reproduced in electronic form from " "IEEE Std 1003.1, 2013 Edition, Standard for Information Technology -- " "Portable Operating System Interface (POSIX), The Open Group Base " "Specifications Issue 7, Copyright (C) 2013 by the Institute of Electrical " "and Electronics Engineers, Inc and The Open Group. (This is POSIX.1-2008 " "with the 2013 Technical Corrigendum 1 applied.) In the event of any " "discrepancy between this version 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.unix." "org/online.html ." msgstr "" #. type: Plain text #: man-pages-posix/man3p/atexit.3p:131 msgid "" "Any typographical or formatting errors that appear in this page are most " "likely to have been introduced during the conversion of the source files to " "man page format. To report such errors, see https://www.kernel.org/doc/man-" "pages/reporting_bugs.html ." msgstr ""