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 */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
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
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_read(value fd, value buf, value ofs, value len)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
1997-05-13 08:46:49 -07:00
|
|
|
long numbytes;
|
1995-05-08 08:18:32 -07:00
|
|
|
int ret;
|
1997-05-13 08:46:49 -07:00
|
|
|
char iobuf[UNIX_BUFFER_SIZE];
|
|
|
|
|
1997-05-26 10:16:31 -07:00
|
|
|
Begin_root (buf);
|
|
|
|
numbytes = Long_val(len);
|
|
|
|
if (numbytes > UNIX_BUFFER_SIZE) numbytes = UNIX_BUFFER_SIZE;
|
|
|
|
enter_blocking_section();
|
|
|
|
ret = read(Int_val(fd), iobuf, (int) numbytes);
|
|
|
|
leave_blocking_section();
|
|
|
|
if (ret == -1) uerror("read", Nothing);
|
2000-11-23 05:45:03 -08:00
|
|
|
memmove (&Byte(buf, Long_val(ofs)), iobuf, ret);
|
1997-05-26 10:16:31 -07:00
|
|
|
End_roots();
|
1995-05-08 08:18:32 -07:00
|
|
|
return Val_int(ret);
|
|
|
|
}
|