summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2015-06-20 13:52:40 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-06-20 13:52:40 +0200
commit66efa0fa9654747345aefcbf82b1ddd184f161cf (patch)
treee5d549856e703b7687e97451c62c5d36dd7346a7
parentffc9f1de70a3a208fac47c115e92cdcbfb3bd85a (diff)
drop merged patch
-rw-r--r--debian/patches/fixes0001-kern-fix-error-handling.patch32
-rw-r--r--debian/patches/series2
2 files changed, 0 insertions, 34 deletions
diff --git a/debian/patches/fixes0001-kern-fix-error-handling.patch b/debian/patches/fixes0001-kern-fix-error-handling.patch
deleted file mode 100644
index 8add2dd..0000000
--- a/debian/patches/fixes0001-kern-fix-error-handling.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 0f67c426360374dc94beae39d5095542dc751093 Mon Sep 17 00:00:00 2001
-From: Justus Winter <4winter@informatik.uni-hamburg.de>
-Date: Thu, 18 Jun 2015 13:45:01 +0200
-Subject: [PATCH gnumach] kern: fix error handling
-
-* kern/thread.c (kernel_thread): Fix error handling.
----
- kern/thread.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/kern/thread.c b/kern/thread.c
-index 8b1e9f5..1f47553 100644
---- a/kern/thread.c
-+++ b/kern/thread.c
-@@ -1667,9 +1667,13 @@ thread_t kernel_thread(
- continuation_t start,
- void * arg)
- {
-+ kern_return_t kr;
- thread_t thread;
-
-- (void) thread_create(task, &thread);
-+ kr = thread_create(task, &thread);
-+ if (kr != KERN_SUCCESS)
-+ return THREAD_NULL;
-+
- /* release "extra" ref that thread_create gave us */
- thread_deallocate(thread);
- thread_start(thread, start);
---
-2.1.4
-
diff --git a/debian/patches/series b/debian/patches/series
index 32f1a3a..fa6ae31 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -12,5 +12,3 @@ sysenter0001-yyy-sysenter-prototype.patch
vm-cache-policy0001-VM-cache-policy-change.patch
vm-cache-policy0002-vm-keep-track-of-clean-pages.patch
vm-cache-policy0003-vm-evict-clean-pages-first.patch
-
-fixes0001-kern-fix-error-handling.patch