summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/write.c
blob: 6b292bbf399921040c481419bb2a1b9ab62afb98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/***********************************************************************/
/*                                                                     */
/*                           Objective Caml                            */
/*                                                                     */
/*            Xavier Leroy, projet Cristal, INRIA Rocquencourt         */
/*                                                                     */
/*  Copyright 1996 Institut National de Recherche en Informatique et   */
/*  Automatique.  Distributed only by permission.                      */
/*                                                                     */
/***********************************************************************/

/* $Id$ */

#include <mlvalues.h>
#include "unix.h"

value unix_write(fd, buf, ofs, len) /* ML */
     value fd, buf, ofs, len;
{
  int ret;
  buf = unix_freeze_buffer(buf);
  enter_blocking_section();
  ret = write(Int_val(fd), &Byte(buf, Long_val(ofs)), Int_val(len));
  leave_blocking_section();
  if (ret == -1) uerror("write", Nothing);
  return Val_int(ret);
}