Use include/sys/epoll.h to provide libc_hidden_proto for epoll_pwait().

This commit is contained in:
Chris Metcalf 2012-01-28 12:00:12 -05:00
parent 73139a7628
commit 463de86252
3 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,9 @@
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 Ulrich Drepper <drepper@gmail.com>
* sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.

6
include/sys/epoll.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef _SYS_EPOLL_H
#include_next <sys/epoll.h>
libc_hidden_proto (epoll_pwait)
#endif

View File

@ -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)