LoongArch: Use "$fcsr0" instead of "$r0" in _FPU_{GET,SET}CW
[glibc.git] / sysdeps / pthread / tst-atfork4mod.c
blobb51621e09705951c72cec1abe6642fb9f5e0a164
1 /* pthread_atfork supports handlers that call pthread_atfork or dlclose.
2 Copyright (C) 2022-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <pthread.h>
20 #include <stdlib.h>
22 /* This dynamically loaded library simply registers its atfork handlers when
23 asked to. The atfork handlers should never be executed because the
24 library is unloaded before fork is called by the test program. */
26 static void
27 prepare (void)
29 abort ();
32 static void
33 parent (void)
35 abort ();
38 static void
39 child (void)
41 abort ();
44 void
45 reg_atfork_handlers (void)
47 pthread_atfork (prepare, parent, child);