diff options
author | 2016-03-09 10:38:56 -0600 | |
---|---|---|
committer | 2016-03-09 10:40:13 -0600 | |
commit | c3d441415006ddb8285b8b649373b02da6cbcb42 (patch) | |
tree | df5610e0f53125dc167b50106c12bbb7bb6ce877 /sys-fs/udev/files | |
parent | sys-cluster/nova: fixing epatch, missed filesdir (diff) | |
download | gentoo-c3d441415006ddb8285b8b649373b02da6cbcb42.tar.gz gentoo-c3d441415006ddb8285b8b649373b02da6cbcb42.tar.bz2 gentoo-c3d441415006ddb8285b8b649373b02da6cbcb42.zip |
sys-fs/udev: remove unstable versions
Package-Manager: portage-2.2.26
Diffstat (limited to 'sys-fs/udev/files')
-rw-r--r-- | sys-fs/udev/files/224-0002-Use-getxpid-syscall-on-alpha-for-raw_getpid.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sys-fs/udev/files/224-0002-Use-getxpid-syscall-on-alpha-for-raw_getpid.patch b/sys-fs/udev/files/224-0002-Use-getxpid-syscall-on-alpha-for-raw_getpid.patch deleted file mode 100644 index 40e2d1c15e12..000000000000 --- a/sys-fs/udev/files/224-0002-Use-getxpid-syscall-on-alpha-for-raw_getpid.patch +++ /dev/null @@ -1,30 +0,0 @@ -From a242a99d42276b6b764f80bd0de70c26e5c5f1d4 Mon Sep 17 00:00:00 2001 -From: Matt Turner <mattst88@gmail.com> -Date: Tue, 4 Aug 2015 14:47:01 -0700 -Subject: [PATCH] Use getxpid syscall on alpha for raw_getpid() - -Alpha does not have a getpid syscall, but rather has getxpid to match -OSF/1. ---- - src/basic/missing.h | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/src/basic/missing.h b/src/basic/missing.h -index ed6cd80..34ab025 100644 ---- a/src/basic/missing.h -+++ b/src/basic/missing.h -@@ -977,7 +977,11 @@ static inline int raw_clone(unsigned long flags, void *child_stack) { - } - - static inline pid_t raw_getpid(void) { -+#if defined(__alpha__) -+ return (pid_t) syscall(__NR_getxpid); -+#else - return (pid_t) syscall(__NR_getpid); -+#endif - } - - #if !HAVE_DECL_RENAMEAT2 --- -2.5.0 - |