Query: at_quick_exit
OS: freebsd
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
AT_QUICK_EXIT(3) BSD Library Functions Manual AT_QUICK_EXIT(3)NAMEat_quick_exit -- registers a cleanup function to run on quick exitLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <stdlib.h> int at_quick_exit(void (*func)(void));DESCRIPTIONThe at_quick_exit() function registers a cleanup function to be called when the program exits as a result of calling quick_exit(3). The cleanup functions are called in the reverse order and will not be called if the program exits by calling exit(3), _Exit(3), or abort(3).RETURN VALUESThe at_quick_exit() function returns the value 0 if successful and a non-zero value on failure.SEE ALSOexit(3), quick_exit(3)STANDARDSThe at_quick_exit() function conforms to ISO/IEC 9899:2011 (``ISO C11'').BSDDecember 7, 2011 BSD
| Related Man Pages |
|---|
| atexit_b(3) - mojave |
| exit(3) - freebsd |
| _exit(2) - netbsd |
| _exit(3) - osx |
| pthread_cleanup_pop(3) - freebsd |
| Similar Topics in the Unix Linux Community |
|---|
| Unix File Permissions |
| The Whole Story on #! /usr/bin/ksh |
| Valid separator in time and date format |
| UNIX Environment Setup - (Just starting!) |
| Controlling user input |