socket.c: For RTEMS, use correct prototype of gethostbyname_r().
2014-08-12 Joel Sherrill <joel.sherrill@oarcorp.com> * socket.c: For RTEMS, use correct prototype of gethostbyname_r(). * gsocket.h Add include of <unistd.h> on RTEMS. From-SVN: r213884
This commit is contained in:
parent
809981faed
commit
06a1d02efd
@ -1,3 +1,8 @@
|
||||
2014-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* socket.c: For RTEMS, use correct prototype of gethostbyname_r().
|
||||
* gsocket.h Add include of <unistd.h> on RTEMS.
|
||||
|
||||
2014-08-11 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* s-osinte-rtems.adb: Correct formatting of line in license block.
|
||||
|
@ -184,6 +184,11 @@
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#if defined(__rtems__)
|
||||
#include <unistd.h>
|
||||
/* Required, for read(), write(), and close() */
|
||||
#endif
|
||||
|
||||
/*
|
||||
* RTEMS has these .h files but not until you have built and installed RTEMS.
|
||||
* When building a C/C++ toolset, you also build the newlib C library, so the
|
||||
|
@ -184,7 +184,7 @@ __gnat_gethostbyname (const char *name,
|
||||
struct hostent *rh;
|
||||
int ri;
|
||||
|
||||
#if defined(__linux__) || defined(__GLIBC__)
|
||||
#if defined(__linux__) || defined(__GLIBC__) || defined(__rtems__)
|
||||
(void) gethostbyname_r (name, ret, buf, buflen, &rh, h_errnop);
|
||||
#else
|
||||
rh = gethostbyname_r (name, ret, buf, buflen, h_errnop);
|
||||
|
Loading…
Reference in New Issue
Block a user