fix and cleanup suseconds_t/timeval stuff (broken on 64-bit)

trash in the upper 32 bits was making the kernel sleep forever in
select on 64-bit systems.
This commit is contained in:
Rich Felker
2011-04-13 13:16:49 -04:00
parent 91e836fda7
commit cac7d837cc
3 changed files with 2 additions and 10 deletions
+1
View File
@@ -6,6 +6,7 @@ extern "C" {
#define __NEED_size_t
#define __NEED_time_t
#define __NEED_suseconds_t
#define __NEED_struct_timeval
#define __NEED_struct_timespec
#define __NEED_sigset_t
-9
View File
@@ -4,17 +4,8 @@
extern "C" {
#endif
/* All symbols from select.h except pselect are required anyway... */
#include <sys/select.h>
#define __NEED_time_t
#define __NEED_suseconds_t
#define __NEED_struct_timeval
#include <bits/alltypes.h>
int gettimeofday (struct timeval *, void *);
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)