diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /linux-uml/linux-uml-2.4.26/11-usr1_process_tkill.patch | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'linux-uml/linux-uml-2.4.26/11-usr1_process_tkill.patch')
-rw-r--r-- | linux-uml/linux-uml-2.4.26/11-usr1_process_tkill.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/linux-uml/linux-uml-2.4.26/11-usr1_process_tkill.patch b/linux-uml/linux-uml-2.4.26/11-usr1_process_tkill.patch deleted file mode 100644 index d339746c6a..0000000000 --- a/linux-uml/linux-uml-2.4.26/11-usr1_process_tkill.patch +++ /dev/null @@ -1,21 +0,0 @@ -Index: linux-2.4.24-2/arch/um/os-Linux/process.c ---- linux-2.4.24-2/arch/um/os-Linux/process.c 19 Jan 2004 21:02:20 -0000 1.8 -+++ linux-2.4.24-2/arch/um/os-Linux/process.c 17 May 2004 18:35:49 -0000 -@@ -7,6 +7,7 @@ - #include <stdio.h> - #include <errno.h> - #include <signal.h> -+#include <linux/unistd.h> - #include <sys/mman.h> - #include <sys/wait.h> - #include "os.h" -@@ -92,7 +93,8 @@ - - void os_usr1_process(int pid) - { -- kill(pid, SIGUSR1); -+ if (syscall(__NR_tkill, pid, SIGUSR1) < 0) -+ kill(pid, SIGUSR1); - } - - int os_getpid(void) |