[gcc]
[official-gcc.git] / libgcc / config / rs6000 / on_exit.c
blob27c113686be6678c9ae8e3af3908a19982ec6663
1 /* Copyright (C) 1999-2018 Free Software Foundation, Inc.
3 NOTE: This source is derived from an old version taken from the GNU C
4 Library (glibc).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 #include <stdlib.h>
28 #include "exit.h"
30 #define atomic_write_barrier() __asm__ ("eieio" ::: "memory")
32 /* Register a function to be called by exit. */
33 int
34 on_exit (void (*func) (int status, void *arg), void *arg)
36 struct exit_function *new = __new_exitfn (&__exit_funcs);
38 if (new == NULL)
39 return -1;
41 #ifdef PTR_MANGLE
42 PTR_MANGLE (func);
43 #endif
44 new->func.on.fn = func;
45 new->func.on.arg = arg;
46 atomic_write_barrier ();
47 new->flavor = ef_on;
48 return 0;