aboutsummaryrefslogtreecommitdiffstats
path: root/erts/etc/common/run_erl_common.c
diff options
context:
space:
mode:
authorMarcus Arendt <[email protected]>2014-11-05 15:34:37 +0100
committerMarcus Arendt <[email protected]>2014-11-05 15:34:37 +0100
commit39cd804e0a04cad11daabcc671ea71594e96f47b (patch)
treeca62a0934eba72cf6ab17e50905f5c695b0c7852 /erts/etc/common/run_erl_common.c
parent0d18bf3268379df2b91e165a835426db77f015e3 (diff)
parent682a6082159568f40615f03d12d44ee70edd14c6 (diff)
downloadotp-39cd804e0a04cad11daabcc671ea71594e96f47b.tar.gz
otp-39cd804e0a04cad11daabcc671ea71594e96f47b.tar.bz2
otp-39cd804e0a04cad11daabcc671ea71594e96f47b.zip
Merge branch 'maint'
Conflicts: erts/vsn.mk
Diffstat (limited to 'erts/etc/common/run_erl_common.c')
-rw-r--r--erts/etc/common/run_erl_common.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/erts/etc/common/run_erl_common.c b/erts/etc/common/run_erl_common.c
index 580b6cc3c5..20b78eb05e 100644
--- a/erts/etc/common/run_erl_common.c
+++ b/erts/etc/common/run_erl_common.c
@@ -36,6 +36,10 @@
# include <syslog.h>
#endif
+#ifdef HAVE_SYS_IOCTL_H
+# include <sys/ioctl.h>
+#endif
+
#ifdef __OSE__
# include "ramlog.h"
#endif
@@ -637,7 +641,7 @@ int erts_run_erl_open_fifo(char *pipename,char *w_pipename,char *r_pipename) {
/* Extract any control sequences that are ment only for run_erl
* and should not be forwarded to the pty.
*/
-int erts_run_erl_extract_ctrl_seq(char* buf, int len)
+int erts_run_erl_extract_ctrl_seq(char* buf, int len, int mfd)
{
static const char prefix[] = "\033_";
static const char suffix[] = "\033\\";
@@ -662,7 +666,7 @@ int erts_run_erl_extract_ctrl_seq(char* buf, int len)
struct winsize ws;
ws.ws_col = col;
ws.ws_row = row;
- if (ioctl(MFD, TIOCSWINSZ, &ws) < 0) {
+ if (ioctl(mfd, TIOCSWINSZ, &ws) < 0) {
ERRNO_ERR0(LOG_ERR,"Failed to set window size");
}
#endif