]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re-core/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/ia64/fork.S
Update
[l4.git] / l4 / pkg / l4re-core / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / ia64 / fork.S
1 /* Copyright (C) 2000, 2002 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, see
16    <http://www.gnu.org/licenses/>.  */
17
18
19 #include "sysdep.h"
20 #define _SIGNAL_H
21 #include <bits/signum.h>
22
23 /* pid_t fork(void); */
24 /* Implemented as a clone system call with parameters SIGCHLD and 0     */
25
26 #ifdef __UCLIBC_HAS_THREADS__
27 .weak fork
28 #endif
29 ENTRY(fork)
30         alloc r2=ar.pfs,0,0,2,0
31         mov out0=SIGCHLD        /* Return SIGCHLD when child finishes   */
32                                 /* no other clone flags; nothing shared */
33         mov out1=0              /* Standard sp value.                   */
34         ;;
35         DO_CALL (SYS_ify (clone))
36         cmp.eq p6,p0=-1,r10
37 (p6)    br.cond.spnt.few __syscall_error
38         ret
39 PSEUDO_END(fork)
40 #ifdef __UCLIBC_HAS_THREADS__
41 strong_alias(fork,__libc_fork)
42 #endif
43 libc_hidden_def(fork)