diff options
Diffstat (limited to 'debian/patches/try-fence0005-libpipe-use-mapped-time.patch')
-rw-r--r-- | debian/patches/try-fence0005-libpipe-use-mapped-time.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/debian/patches/try-fence0005-libpipe-use-mapped-time.patch b/debian/patches/try-fence0005-libpipe-use-mapped-time.patch deleted file mode 100644 index 1e23a5ce..00000000 --- a/debian/patches/try-fence0005-libpipe-use-mapped-time.patch +++ /dev/null @@ -1,36 +0,0 @@ -From b13be312cd20eb3df949c13aea7db9cb73180e82 Mon Sep 17 00:00:00 2001 -From: Justus Winter <4winter@informatik.uni-hamburg.de> -Date: Tue, 8 Sep 2015 15:17:59 +0200 -Subject: [PATCH hurd 5/5] libpipe: use mapped time - -* libpipe/pipe.c (timestamp): Use mapped time instead of system call. ---- - libpipe/pipe.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -diff --git a/libpipe/pipe.c b/libpipe/pipe.c -index 9580eb7..ca653f2 100644 ---- a/libpipe/pipe.c -+++ b/libpipe/pipe.c -@@ -23,8 +23,7 @@ - #include <stdlib.h> - - #include <mach/time_value.h> --#include <mach/mach_host.h> -- -+#include <maptime.h> - #include <hurd/hurd_types.h> - - #include "pipe.h" -@@ -32,7 +31,7 @@ - static inline void - timestamp (time_value_t *stamp) - { -- host_get_time (mach_host_self (), stamp); -+ maptime_read_time_value (maptime_default_mtime, stamp); - } - - /* Hold this lock before attempting to lock multiple pipes. */ --- -2.1.4 - |