diff options
author | Raimo Niskanen <[email protected]> | 2011-12-08 13:32:09 +0100 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2011-12-20 12:07:41 +0100 |
commit | b3db46435e2d32aa4197753bc95a81648f794021 (patch) | |
tree | c79295468315656a94f86f816ed914bdd830b312 /erts/emulator/drivers/common/erl_efile.h | |
parent | d34e248f0913a337f1662e07b15298f9a082834b (diff) | |
download | otp-b3db46435e2d32aa4197753bc95a81648f794021.tar.gz otp-b3db46435e2d32aa4197753bc95a81648f794021.tar.bz2 otp-b3db46435e2d32aa4197753bc95a81648f794021.zip |
erts: rewrite efile_writev to handle partial writes correctly
Diffstat (limited to 'erts/emulator/drivers/common/erl_efile.h')
-rw-r--r-- | erts/emulator/drivers/common/erl_efile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/drivers/common/erl_efile.h b/erts/emulator/drivers/common/erl_efile.h index 3868b38137..69ad02633c 100644 --- a/erts/emulator/drivers/common/erl_efile.h +++ b/erts/emulator/drivers/common/erl_efile.h @@ -162,7 +162,7 @@ int efile_write_info(Efile_error* errInfo, Efile_info* pInfo, char *name); int efile_write(Efile_error* errInfo, int flags, int fd, char* buf, size_t count); int efile_writev(Efile_error* errInfo, int flags, int fd, - SysIOVec* iov, int iovcnt, size_t size); + SysIOVec* iov, int iovcnt); int efile_read(Efile_error* errInfo, int flags, int fd, char* buf, size_t count, size_t* pBytesRead); int efile_seek(Efile_error* errInfo, int fd, |