1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1997-05-13 08:46:49 -07:00
|
|
|
#include <errno.h>
|
1997-06-13 08:52:43 -07:00
|
|
|
#include <string.h>
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <mlvalues.h>
|
1997-05-13 08:46:49 -07:00
|
|
|
#include <memory.h>
|
|
|
|
#include <signals.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.h"
|
1995-05-08 08:18:32 -07:00
|
|
|
|
1997-05-13 08:46:49 -07:00
|
|
|
#ifndef EAGAIN
|
|
|
|
#define EAGAIN (-1)
|
|
|
|
#endif
|
|
|
|
#ifndef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK (-1)
|
|
|
|
#endif
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
value unix_write(value fd, value buf, value vofs, value vlen) /* ML */
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
1997-05-13 08:46:49 -07:00
|
|
|
long ofs, len, written;
|
|
|
|
int numbytes, ret;
|
|
|
|
char iobuf[UNIX_BUFFER_SIZE];
|
|
|
|
|
1997-05-26 10:16:31 -07:00
|
|
|
Begin_root (buf);
|
|
|
|
ofs = Long_val(vofs);
|
|
|
|
len = Long_val(vlen);
|
|
|
|
written = 0;
|
|
|
|
while (len > 0) {
|
|
|
|
numbytes = len > UNIX_BUFFER_SIZE ? UNIX_BUFFER_SIZE : len;
|
|
|
|
bcopy(&Byte(buf, ofs), iobuf, numbytes);
|
|
|
|
enter_blocking_section();
|
|
|
|
ret = write(Int_val(fd), iobuf, numbytes);
|
|
|
|
leave_blocking_section();
|
|
|
|
if (ret == -1) {
|
|
|
|
if ((errno == EAGAIN || errno == EWOULDBLOCK) && written > 0) break;
|
|
|
|
uerror("write", Nothing);
|
|
|
|
}
|
|
|
|
written += ret;
|
|
|
|
ofs += ret;
|
|
|
|
len -= ret;
|
1997-05-13 08:46:49 -07:00
|
|
|
}
|
1997-05-26 10:16:31 -07:00
|
|
|
End_roots();
|
1997-05-13 08:46:49 -07:00
|
|
|
return Val_long(written);
|
1995-05-08 08:18:32 -07:00
|
|
|
}
|