summaryrefslogtreecommitdiff
path: root/linux-uml/linux-uml-2.6.7/NR_tkill_undefined.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /linux-uml/linux-uml-2.6.7/NR_tkill_undefined.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (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.6.7/NR_tkill_undefined.patch')
-rw-r--r--linux-uml/linux-uml-2.6.7/NR_tkill_undefined.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/linux-uml/linux-uml-2.6.7/NR_tkill_undefined.patch b/linux-uml/linux-uml-2.6.7/NR_tkill_undefined.patch
deleted file mode 100644
index 21c5f58dd7..0000000000
--- a/linux-uml/linux-uml-2.6.7/NR_tkill_undefined.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-
-Avoids compile failure when host misses tkill(), by simply using kill() in
-that case.
-
-Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
----
-
- uml-linux-2.6.7-paolo/arch/um/os-Linux/process.c | 5 ++++-
- 1 files changed, 4 insertions(+), 1 deletion(-)
-
-diff -puN arch/um/os-Linux/process.c~NR_tkill_undefined arch/um/os-Linux/process.c
---- uml-linux-2.6.7/arch/um/os-Linux/process.c~NR_tkill_undefined 2004-06-29 21:03:02.577245568 +0200
-+++ uml-linux-2.6.7-paolo/arch/um/os-Linux/process.c 2004-06-29 21:03:02.579245264 +0200
-@@ -93,8 +93,11 @@ void os_kill_process(int pid, int reap_c
-
- void os_usr1_process(int pid)
- {
-+#ifdef __NR_tkill
- syscall(__NR_tkill, pid, SIGUSR1);
-- /* kill(pid, SIGUSR1); */
-+#else
-+ kill(pid, SIGUSR1);
-+#endif
- }
-
- int os_getpid(void)
-_