am e05709b1: am e611fad0: am 14e1975e: Merge "Fix signalfd for MIPS."

* commit 'e05709b1df7dba98c37e83f84dcbd2ad8429bcfc':
  Fix signalfd for MIPS.
This commit is contained in:
Elliott Hughes 2013-01-16 09:50:42 -08:00 committed by Android Git Automerger
commit 1a18895ebc

View File

@ -25,17 +25,16 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef _SYS_SIGNALFD_H_
#define _SYS_SIGNALFD_H_
#include <linux/signalfd.h>
#include <sys/cdefs.h>
#include <signal.h>
#include <linux/signalfd.h>
__BEGIN_DECLS
/* Compatibility with GLibc */
extern int signalfd(int fd, const sigset_t *mask, int flags);
extern int signalfd(int fd, const sigset_t* mask, int flags) __attribute__((__nonnull__(2)));
__END_DECLS