diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-02-14 00:23:07 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-02-14 00:23:19 +0100 |
commit | fbdd7abdca3a22b70576ab359f42710765735188 (patch) | |
tree | 16421f598b89d869441a529a9ad7913505588891 /src/core/iomgr | |
parent | 3793267edec1208fd37dcc196d0302f1a07bc65c (diff) |
Cleaning up our posix definition / usage.
-) Let's not use _POSIX_SOURCE. It usually implies too much C99. _BSD_SOURCE would be the right thing to do here.
-) _BSD_SOURCE is getting deprecated by glibc, so we also have to define _DEFAULT_SOURCE under Linux.
-) accept4 and eventfd arn't as old as we may think; let's detect for it.
-) stdint.h interferes with all these definitions if included too early; let's move it down.
Diffstat (limited to 'src/core/iomgr')
-rw-r--r-- | src/core/iomgr/socket_utils_linux.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/iomgr/socket_utils_linux.c b/src/core/iomgr/socket_utils_linux.c index 7ef58940c2..f3c22187d7 100644 --- a/src/core/iomgr/socket_utils_linux.c +++ b/src/core/iomgr/socket_utils_linux.c @@ -31,12 +31,9 @@ * */ -#ifndef _GNU_SOURCE -#define _GNU_SOURCE -#endif #include <grpc/support/port_platform.h> -#ifdef GPR_LINUX +#ifdef GPR_LINUX_SOCKETUTILS #include "src/core/iomgr/socket_utils_posix.h" |