mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
81797980f7
URLs automatically rewritten from /search?dist=Foo or /dist/Foo to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization, this is the preferred way to refer to modules on search.cpan.org. This pass brought to you by http://people.freebsd.org/~fenner/fix-search
15 lines
656 B
Plaintext
15 lines
656 B
Plaintext
The AtExit module provides ANSI-C style exit processing modeled after
|
|
the atexit function in the standard C library (see atexit(3C)). Various
|
|
exit processing routines may be registered by calling atexit and passing
|
|
it the desired subroutine along with any desired arguments. Then, at
|
|
program-exit time, the subroutines registered with atexit are invoked
|
|
with their given arguments in the reverse order of registration (last
|
|
one registered is invoked first). Registering the same subroutine more
|
|
than once will cause that subroutine to be invoked once for each
|
|
registration.
|
|
|
|
WWW: http://search.cpan.org/dist/AtExit/
|
|
|
|
-- Sergey Skvortsov
|
|
skv@FreeBSD.org
|