1 /* Copyright (C) 1996, 1997, 2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Richard Henderson <rth@tamu.edu>, 1996.
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 <http://www.gnu.org/licenses/>. */
19 /* clone() is even more special than fork() as it mucks with stacks
20 and invokes a function in the right context after its all over. */
24 #include <bits/errno.h>
26 #define CLONE_VM 0x00000100
27 #define CLONE_THREAD 0x00010000
29 /* int clone(int (*fn)(void *arg), void *child_stack, int flags,
30 void *arg, pid_t *ptid, void *tls, pid_t *ctid);
32 Note that everything past ARG is technically optional, based
33 on FLAGS, and that CTID is arg 7, and thus is on the stack.
34 However, since a load from top-of-stack better be legal always,
35 we don't bother checking FLAGS. */
41 .usepv __clone, USEPV_PROF
51 /* Sanity check arguments. */
53 beq a0, SYSCALL_ERROR_LABEL /* no NULL function pointers */
54 beq a1, SYSCALL_ERROR_LABEL /* no NULL stack pointers */
56 /* Save the fn ptr and arg on the new stack. */
64 /* The syscall is of the form clone(flags, usp, ptid, ctid, tls).
65 Shift the flags, ptid, ctid, tls arguments into place; the
66 child_stack argument is already correct. */
72 /* Do the system call. */
76 bne a3, SYSCALL_ERROR_LABEL
79 /* Successful return from the parent. */
85 /* Load up the arguments to the function. Put this block of code in
86 its own function so that we can terminate the stack trace with our
93 cfi_def_cfa_register(fp)
97 /* Check and see if we need to reset the PID. */
105 /* Load up the arguments. */
110 /* Call the user's function. */
114 /* Call _exit rather than doing it inline for breakpoint purposes. */
117 bsr ra, HIDDEN_JUMPTARGET(_exit) !samegp
119 jsr ra, HIDDEN_JUMPTARGET(_exit)
136 stl v0, PID_OFFSET(s0)
137 stl v0, TID_OFFSET(s0)
143 weak_alias (__clone, clone)