update from main archive 960919
[glibc.git] / sysdeps / unix / sysv / linux / m68k / clone.S
blob64077e00de1d25daa8753134f1608872e1495d71
1 /* Copyright (C) 1996 Free Software Foundation, Inc.
2    Contributed by Andreas Schwab (schwab@issan.informatik.uni-dortmund.de)
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
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 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA.  */
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.  */
22 #include <sysdep.h>
23 #include <errnos.h>
25 /* int clone (int (*fn) (), void *child_stack, int flags, int nargs, ...) */
27         .text
28 ENTRY (__clone)
29         /* Sanity check arguments.  */
30         movel   #-EINVAL, %d0
31         movel   4(%sp), %a0             /* no NULL function pointers */
32         tstl    %a0
33         jeq     syscall_error
34         movel   8(%sp), %a1             /* no NULL stack pointers */
35         tstl    %a1
36         jeq     syscall_error
37         movel   16(%sp), %d1            /* no negative argument counts */
38         jmi     syscall_error
40         /* Allocate space on the new stack and copy args over */
41         movel   %d1, %d0
42         negl    %d0
43         lea     (%a1,%d0.l*4), %a1
44         jeq     2f
45 1:      movel   16(%sp,%d1.l*4), -4(%a1,%d1.l*4)
46         subql   #1, %d1
47         jne     1b
50         /* Do the system call */
51         exg     %d2, %a1                /* save %d2 and get stack pointer */
52         movel   12(%sp), %d1            /* get flags */
53         movel   #SYS_ify (clone), %d0
54         trap    #0
55         exg     %d2, %a1                /* restore %d2 */
57         tstl    %d0
58         jmi     syscall_error
59         jeq     thread_start
61         rts
63         SYSCALL_ERROR_HANDLER
65 thread_start:
66         subl    %fp, %fp        /* terminate the stack frame */
67         jsr     (%a0)
68         movel   %d0, -(%sp)
69 #ifdef PIC
70         bsrl    _exit@PLTPC
71 #else
72         jbsr    _exit
73 #endif
75 weak_alias (__clone, clone)