OSDN Git Service

ldso: Fix compile-error on noMMU
[uclinux-h8/uClibc.git] / libpthread / linuxthreads / sysdeps / unix / sysv / linux / sparc / vfork.S
1 /* Copyright (C) 2003 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
4
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.
9
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.
14
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    <http://www.gnu.org/licenses/>.  */
18
19 #include <sysdep-cancel.h>
20
21         .text
22 #ifdef SHARED
23 .LLGETPC0:
24         retl
25          add    %o7, %o0, %o0
26 #endif
27 ENTRY(__vfork)
28 #ifdef SHARED
29         mov     %o7, %o1
30         sethi   %hi(_GLOBAL_OFFSET_TABLE_-4), %o0
31         call    .LLGETPC0
32          add    %o0, %lo(_GLOBAL_OFFSET_TABLE_+4), %o0
33         sethi   %hi(__libc_pthread_functions), %o2
34         mov     %o1, %o7
35         or      %o2, %lo(__libc_pthread_functions), %o2
36         ld      [%o0 + %o2], %o2
37         ld      [%o2], %o2
38         cmp     %o2, 0
39 #else
40         .weak   pthread_create
41         sethi   %hi(pthread_create), %o0
42         orcc    %o0, %lo(pthread_create), %o0
43 #endif
44 #if defined SHARED && !defined BROKEN_SPARC_WDISP22
45         bne     HIDDEN_JUMPTARGET(fork)
46 #else
47         bne     1f
48 #endif
49          mov    __NR_vfork, %g1
50         ta      0x10
51         bcs     __syscall_error_handler
52          nop
53         sub     %o1, 1, %o1
54         retl
55          and    %o0, %o1, %o0
56 #if !defined SHARED || defined BROKEN_SPARC_WDISP22
57 1:      mov     %o7, %g1
58         call    HIDDEN_JUMPTARGET(fork)
59          mov    %g1, %o7
60 #endif
61         SYSCALL_ERROR_HANDLER
62 PSEUDO_END (__vfork)
63 libc_hidden_def (__vfork)
64 weak_alias (__vfork, vfork)