about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2012-01-28 12:00:12 -0500
committerChris Metcalf <cmetcalf@tilera.com>2012-06-28 10:18:37 -0400
commit730ca05f093c53088f1d174ee68f1d8c82e5c998 (patch)
tree0d6d1226b67fb6e51f8093a1ab90d8da4495df1e
parent287f25ea2cf4f798b651dca3f46c397ef60379c1 (diff)
downloadglibc-730ca05f093c53088f1d174ee68f1d8c82e5c998.tar.gz
glibc-730ca05f093c53088f1d174ee68f1d8c82e5c998.tar.xz
glibc-730ca05f093c53088f1d174ee68f1d8c82e5c998.zip
Use include/sys/epoll.h to provide libc_hidden_proto for epoll_pwait().
(cherry picked from commit 463de8625241174b25e339c119d7c59e79b474ec)
-rw-r--r--ChangeLog6
-rw-r--r--include/sys/epoll.h6
-rw-r--r--sysdeps/unix/sysv/linux/epoll_pwait.c4
3 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 28a6205f54..53ffbe2b53 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2012-01-28  Chris Metcalf  <cmetcalf@tilera.com>
 
+	* include/sys/epoll.h: New file.
+	* sysdeps/unix/sysv/linux/epoll_pwait.c (epoll_pwait): Mark as
+	libc_hidden_def.
+
+2012-01-28  Chris Metcalf  <cmetcalf@tilera.com>
+
 	* sysdeps/unix/sysv/linux/grantpt.c: Use <> brackets for not-cancel.h.
 
 2012-01-29  Chris Metcalf  <cmetcalf@tilera.com>
diff --git a/include/sys/epoll.h b/include/sys/epoll.h
new file mode 100644
index 0000000000..ce1c2e26d5
--- /dev/null
+++ b/include/sys/epoll.h
@@ -0,0 +1,6 @@
+#ifndef _SYS_EPOLL_H
+#include_next <sys/epoll.h>
+
+libc_hidden_proto (epoll_pwait)
+
+#endif
diff --git a/sysdeps/unix/sysv/linux/epoll_pwait.c b/sysdeps/unix/sysv/linux/epoll_pwait.c
index e689073d18..a9c5b3c511 100644
--- a/sysdeps/unix/sysv/linux/epoll_pwait.c
+++ b/sysdeps/unix/sysv/linux/epoll_pwait.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2007, 2011, 2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -67,3 +67,5 @@ stub_warning (epoll_pwait)
 
 # include <stub-tag.h>
 #endif
+
+libc_hidden_def (epoll_pwait)