summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/fork.c
blob: f21ec35b818d72a477032d89a677223cdfb0ab3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* vi: set sw=4 ts=4: */
/*
 * fork() for uClibc
 *
 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <sys/syscall.h>
#include <unistd.h>

#ifdef __ARCH_USE_MMU__

#ifdef __NR_fork
#define __NR___libc_fork __NR_fork
extern __typeof(fork) __libc_fork;
_syscall0(pid_t, __libc_fork)
weak_alias(__libc_fork,fork)
libc_hidden_weak(fork)
#endif

#elif defined __UCLIBC_HAS_STUBS__

extern __typeof(fork) __libc_fork;
pid_t __libc_fork(void)
{
	__set_errno(ENOSYS);
	return -1;
}
weak_alias(__libc_fork,fork)
libc_hidden_weak(fork)
link_warning(fork, "fork: this function is not implemented on no-mmu systems")

#endif