diff options
author | Sverker Eriksson <[email protected]> | 2011-07-27 11:53:18 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2011-07-27 11:53:18 +0200 |
commit | 91f542de43d442b98e87d47c2d57234531b7828a (patch) | |
tree | dbd91f259ee215d68c3983287c7da1111a4896dc /erts/epmd/src/epmd_int.h | |
parent | cf48785f58fa88f99c658711fb16c50e0e614008 (diff) | |
parent | 74ced1a2b0cbea40c45b41ca52b0191ff3ebfcbf (diff) | |
download | otp-91f542de43d442b98e87d47c2d57234531b7828a.tar.gz otp-91f542de43d442b98e87d47c2d57234531b7828a.tar.bz2 otp-91f542de43d442b98e87d47c2d57234531b7828a.zip |
Merge branch 'dev' into major
Diffstat (limited to 'erts/epmd/src/epmd_int.h')
-rw-r--r-- | erts/epmd/src/epmd_int.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/erts/epmd/src/epmd_int.h b/erts/epmd/src/epmd_int.h index 2a0de4df9c..a2d7559f9d 100644 --- a/erts/epmd/src/epmd_int.h +++ b/erts/epmd/src/epmd_int.h @@ -240,6 +240,14 @@ #define put_int16(i, s) {((unsigned char*)(s))[0] = ((i) >> 8) & 0xff; \ ((unsigned char*)(s))[1] = (i) & 0xff;} +#if defined(__GNUC__) +# define EPMD_INLINE __inline__ +#elif defined(__WIN32__) +# define EPMD_INLINE __inline +#else +# define EPMD_INLINE +#endif + /* ************************************************************************ */ /* Stuctures used by server */ @@ -295,6 +303,7 @@ typedef struct { unsigned delay_write; int max_conn; int active_conn; + int select_fd_top; char *progname; Connection *conn; Nodes nodes; |