aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/sys/unix/sys_uds.h
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2018-03-15 17:21:04 +0100
committerSverker Eriksson <[email protected]>2018-03-20 15:33:45 +0100
commit836b90884f9abff3a82b2cee8bada16b23f7ddf7 (patch)
tree590a433658f93ff135b90d6abda60eb791307585 /erts/emulator/sys/unix/sys_uds.h
parentd171399bb5a0e9f4c6029564ece4fbf89f3c76f8 (diff)
downloadotp-836b90884f9abff3a82b2cee8bada16b23f7ddf7.tar.gz
otp-836b90884f9abff3a82b2cee8bada16b23f7ddf7.tar.bz2
otp-836b90884f9abff3a82b2cee8bada16b23f7ddf7.zip
erts: Make sys_memcpy and friends inline functions
to avoid argument-evaluated-twice bugs like in macro DMC_PUSH. Had to shuffle around some #include and #define to make erl_child_setup build debug target.
Diffstat (limited to 'erts/emulator/sys/unix/sys_uds.h')
-rw-r--r--erts/emulator/sys/unix/sys_uds.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/erts/emulator/sys/unix/sys_uds.h b/erts/emulator/sys/unix/sys_uds.h
index a598102d5c..26c91d6a00 100644
--- a/erts/emulator/sys/unix/sys_uds.h
+++ b/erts/emulator/sys/unix/sys_uds.h
@@ -21,18 +21,6 @@
#ifndef _ERL_UNIX_UDS_H
#define _ERL_UNIX_UDS_H
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#if defined(__sun__) && !defined(_XOPEN_SOURCE)
-#define _XOPEN_SOURCE 500
-#endif
-
-#include <limits.h>
-
-#include <sys/types.h>
-#include <sys/socket.h>
#include <sys/uio.h>
#if defined IOV_MAX
@@ -43,8 +31,6 @@
#define MAXIOV 16
#endif
-#include "sys.h"
-
int sys_uds_readv(int fd, struct iovec *iov, size_t iov_len,
int *fds, int fd_count, int flags);
int sys_uds_read(int fd, char *buff, size_t len,