| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | /* * libc/sysdeps/linux/bfin/clone.c -- `clone' syscall for linux/blackfin * * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */#include <sched.h>#include <errno.h>#include <sys/syscall.h>intclone (int (*fn)(void *arg), void *child_stack, int flags, void *arg, ...){	register long rval = -1;	if (fn && child_stack) {#ifdef __BFIN_FDPIC__	__asm__ __volatile__ (			"excpt 0;"	 /*Call sys_clone*/			"cc = r0 == 0;"			"if !cc jump .Lxxx;"	/* if (rval != 0) skip to parent */			"r0 = %4;"			"p0 = %5;"			"fp = 0;"			"p1 = [p0];"			"p3 = [p0 + 4];"			"call (p1);"	/* Call cloned function */			"p0 = %6;"			"excpt 0;"	/* Call sys_exit */			".Lxxx: nop;"			: "=q0" (rval)			: "qA" (__NR_clone), "q1" (child_stack), "q0" (flags), "a" (arg), "a" (fn), "i" (__NR_exit)			: "CC");#else	__asm__ __volatile__ (			"excpt 0;"	 /*Call sys_clone*/			"cc = r0 == 0;"			"if !cc jump .Lxxx;"	/* if (rval != 0) skip to parent */			"r0 = %4;"			"p0 = %5;"			"fp = 0;"			"call (p0);"	/* Call cloned function */			"p0 = %6;"			"excpt 0;"	/* Call sys_exit */			".Lxxx: nop;"			: "=q0" (rval)			: "qA" (__NR_clone), "q1" (child_stack), "q0" (flags), "a" (arg), "a" (fn), "i" (__NR_exit)			: "CC");#endif	} else {		__set_errno(EINVAL);	}	return rval;}
 |