repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
stdlib
/
cxa_finalize.c
blob
467532881b04210a63c2529c0377ef05066b9b3b
1
/*
2
* Implementation if __cxa_finalize.
3
*/
4
5
6
#include <stdlib.h>
7
#include <reent.h>
8
#include
"atexit.h"
9
10
/*
11
* Call registered exit handlers. If D is null then all handlers are called,
12
* otherwise only the handlers from that DSO are called.
13
*/
14
15
void
16
__cxa_finalize
(
void
*
d
)
17
{
18
__call_exitprocs
(
0
,
d
);
19
}