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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 /* clone() is even more special than fork() as it mucks with stacks
21 and invokes a function in the right context after its all over. */
25 #include <bits/errno.h>
27 #define CLONE_VM 0x00000100
28 #define CLONE_THREAD 0x00010000
30 /* int clone(int (*fn)(void *arg), void *child_stack, int flags,
31 void *arg, pid_t *ptid, void *tls, pid_t *ctid);
33 Note that everything past ARG is technically optional, based
34 on FLAGS, and that CTID is arg 7, and thus is on the stack.
35 However, since a load from top-of-stack better be legal always,
36 we don't bother checking FLAGS. */
51 /* Sanity check arguments. */
53 beq a0,$error /* no NULL function pointers */
54 beq a1,$error /* 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. */
79 /* Successful return from the parent. */
82 /* Something bad happened -- no child created. */
92 /* Load up the arguments to the function. Put this block of code in
93 its own function so that we can terminate the stack trace with our
103 /* Check and see if we need to reset the PID. */
111 /* Load up the arguments. */
116 /* Call the user's function. */
120 /* Call _exit rather than doing it inline for breakpoint purposes. */
123 bsr ra, HIDDEN_JUMPTARGET(_exit) !samegp
125 jsr ra, HIDDEN_JUMPTARGET(_exit)
142 stl v0, PID_OFFSET(s0)
143 stl v0, TID_OFFSET(s0)
149 weak_alias (__clone, clone)