Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ldr_atexit(3) [osf1 man page]

ldr_atexit(3)						     Library Functions Manual						     ldr_atexit(3)

NAME
ldr_atexit - Runs termination functions for shared libraries LIBRARY
Library: standard C Library (libc.{a,so}) SYNOPSIS
int ldr_atexit(void); DESCRIPTION
The ldr_atexit() function runs termination functions for a process' shared libraries and executable file. These termination functions are determined when a shared library or shared executable file is linked and the functions are handled separately from atexit functions identi- fied by the atexit() call. The ldr_atexit() function is normally called by the exit() function, but it may also be called directly by an exit handler. RETURN VALUES
If the ldr_atexit operation is a success, the function returns a code of 0 (zero). If the operation fails, the function returns a negative error value and errno is set to indicate the error. RELATED INFORMATION
Functions: exit(2), atexit(2) delim off ldr_atexit(3)

Check Out this Related Man Page

atexit(3C)						   Standard C Library Functions 						atexit(3C)

NAME
atexit - register a function to run at process termination or object unloading SYNOPSIS
#include <stdlib.h> int atexit(void (*func)(void)); DESCRIPTION
The atexit() function registers the function pointed to by func to be called without arguments on normal termination of the program or when the object defining the function is unloaded. Normal termination occurs by either a call to the exit(3C) function or a return from main(). Object unloading occurs when a call to dlclose(3C) results in the object becoming unreferenced. The number of functions that may be registered with atexit() is limited only by available memory (refer to the _SC_ATEXIT_MAX argument of sysconf(3C)). After a successful call to any of the exec(2) functions, any functions previously registered by atexit() are no longer registered. On process exit, functions are called in the reverse order of their registration. On object unloading, any functions belonging to an unloadable object are called in the reverse order of their registration. RETURN VALUES
Upon successful completion, the atexit() function returns 0. Otherwise, it returns a non-zero value. ERRORS
The atexit() function may fail if: ENOMEM Insufficient storage space is available. USAGE
The functions registered by a call to atexit() must return to ensure that all registered functions are called. There is no way for an application to tell how many functions have already been registered with atexit(). ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
exec(2), dlclose(3C), exit(3C), sysconf(3C), attributes(5) SunOS 5.10 25 May 2001 atexit(3C)
Man Page

We Also Found This Discussion For You

1. What is on Your Mind?

Throw my Toys out of the Pram!

Hi Folks, Today hasn't been the best one of my career in IT. I've been a contractor for a major utility company for a number of years, on a number of seperate IT contracts mostly Unix. The company had 10 different flavours of unix and multiple different varsions of most of them. At the... (3 Replies)
Discussion started by: gull04
3 Replies