diff options
author | Lukas Larsson <[email protected]> | 2011-12-07 10:46:22 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-12-07 10:46:22 +0100 |
commit | f34a89e0c0cc92226d5fe3fb257c62251068392b (patch) | |
tree | 98df44f40eb8d5172c313d75bfe756a21ac3ac1c /erts | |
parent | ec885e883c99825e7d737752b1b0aebbbafbd670 (diff) | |
download | otp-f34a89e0c0cc92226d5fe3fb257c62251068392b.tar.gz otp-f34a89e0c0cc92226d5fe3fb257c62251068392b.tar.bz2 otp-f34a89e0c0cc92226d5fe3fb257c62251068392b.zip |
Do not use SFV_NOWAIT as it does not exist on all solaris
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/drivers/unix/unix_efile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/drivers/unix/unix_efile.c b/erts/emulator/drivers/unix/unix_efile.c index 92314fce36..630c570f7c 100644 --- a/erts/emulator/drivers/unix/unix_efile.c +++ b/erts/emulator/drivers/unix/unix_efile.c @@ -1517,7 +1517,7 @@ efile_sendfile(Efile_error* errInfo, int in_fd, int out_fd, size_t len; sendfilevec_t fdrec; fdrec.sfv_fd = in_fd; - fdrec.sfv_flag = SFV_NOWAIT; + fdrec.sfv_flag = 0; do { fdrec.sfv_off = *offset; len = 0; |