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. */
50 /* Sanity check arguments. */
52 beq a0,$error /* no NULL function pointers */
53 beq a1,$error /* no NULL stack pointers */
55 /* Save the fn ptr and arg on the new stack. */
63 /* The syscall is of the form clone(flags, usp, ptid, ctid, tls).
64 Shift the flags, ptid, ctid, tls arguments into place; the
65 child_stack argument is already correct. */
71 /* Do the system call. */
78 /* Successful return from the parent. */
81 /* Something bad happened -- no child created. */
91 /* Load up the arguments to the function. Put this block of code in
92 its own function so that we can terminate the stack trace with our
102 /* Check and see if we need to reset the PID. */
110 /* Load up the arguments. */
115 /* Call the user's function. */
119 /* Call _exit rather than doing it inline for breakpoint purposes. */
122 bsr ra, HIDDEN_JUMPTARGET(_exit) !samegp
124 jsr ra, HIDDEN_JUMPTARGET(_exit)
141 stl v0, PID_OFFSET(s0)
142 stl v0, TID_OFFSET(s0)
148 weak_alias (__clone, clone)