1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Fix prototype of eventfd.

This commit is contained in:
Rasmus Villemoes
2014-09-20 14:04:52 +02:00
committed by Ondřej Bílka
parent 20e5a5f773
commit 69eb9a183c
4 changed files with 10 additions and 3 deletions

View File

@ -31,7 +31,7 @@ __BEGIN_DECLS
/* Return file descriptor for generic event channel. Set initial
value to COUNT. */
extern int eventfd (int __count, int __flags) __THROW;
extern int eventfd (unsigned int __count, int __flags) __THROW;
/* Read event counter and possibly wait for events. */
extern int eventfd_read (int __fd, eventfd_t *__value);