diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-05-01 00:48:06 -0400 |
---|---|---|
committer | Bob Liu <lliubbo@gmail.com> | 2012-05-21 02:54:39 -0400 |
commit | 080bb657eb0d02d0df73e62572eb814aebf66850 (patch) | |
tree | 77cc6b532ff34bef6c427931fd1109b86517fb53 /arch/blackfin/include/asm/unistd.h | |
parent | 592b8785b966ef2841e34a7691026d3aec1ce382 (diff) |
Blackfin: delete fork func
We don't implement fork() since we are no-mmu, so redirect it to the
existing ENOSYS stub rather than adding a custom EINVAL one.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
Diffstat (limited to 'arch/blackfin/include/asm/unistd.h')
-rw-r--r-- | arch/blackfin/include/asm/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/unistd.h b/arch/blackfin/include/asm/unistd.h index 75ec9df5318..3287222cba3 100644 --- a/arch/blackfin/include/asm/unistd.h +++ b/arch/blackfin/include/asm/unistd.h | |||
@@ -11,7 +11,7 @@ | |||
11 | */ | 11 | */ |
12 | #define __NR_restart_syscall 0 | 12 | #define __NR_restart_syscall 0 |
13 | #define __NR_exit 1 | 13 | #define __NR_exit 1 |
14 | #define __NR_fork 2 | 14 | /* 2 __NR_fork not supported on nommu */ |
15 | #define __NR_read 3 | 15 | #define __NR_read 3 |
16 | #define __NR_write 4 | 16 | #define __NR_write 4 |
17 | #define __NR_open 5 | 17 | #define __NR_open 5 |