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$ */
|
|
|
|
|
2002-03-02 01:16:39 -08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/types.h>
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <mlvalues.h>
|
2002-03-02 01:16:39 -08:00
|
|
|
#include <alloc.h>
|
|
|
|
#include <io.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.h"
|
1995-05-08 08:18:32 -07:00
|
|
|
|
|
|
|
#ifdef HAS_UNISTD
|
|
|
|
#include <unistd.h>
|
|
|
|
#else
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
#define SEEK_END 2
|
|
|
|
#endif
|
|
|
|
|
2002-03-02 01:16:39 -08:00
|
|
|
#ifndef EOVERFLOW
|
|
|
|
#define EOVERFLOW ERANGE
|
|
|
|
#endif
|
|
|
|
|
1995-05-08 08:18:32 -07:00
|
|
|
static int seek_command_table[] = {
|
|
|
|
SEEK_SET, SEEK_CUR, SEEK_END
|
|
|
|
};
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_lseek(value fd, value ofs, value cmd)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
2002-03-02 01:16:39 -08:00
|
|
|
file_offset ret;
|
1995-05-08 08:18:32 -07:00
|
|
|
ret = lseek(Int_val(fd), Long_val(ofs),
|
1995-06-18 07:59:32 -07:00
|
|
|
seek_command_table[Int_val(cmd)]);
|
1995-05-08 08:18:32 -07:00
|
|
|
if (ret == -1) uerror("lseek", Nothing);
|
2002-03-02 01:16:39 -08:00
|
|
|
if (ret > Max_long) unix_error(EOVERFLOW, "lseek", Nothing);
|
1995-05-08 08:18:32 -07:00
|
|
|
return Val_long(ret);
|
|
|
|
}
|
2002-03-02 01:16:39 -08:00
|
|
|
|
|
|
|
CAMLprim value unix_lseek_64(value fd, value ofs, value cmd)
|
|
|
|
{
|
|
|
|
file_offset ret;
|
|
|
|
ret = lseek(Int_val(fd), File_offset_val(ofs),
|
|
|
|
seek_command_table[Int_val(cmd)]);
|
|
|
|
if (ret == -1) uerror("lseek", Nothing);
|
|
|
|
return Val_file_offset(ret);
|
|
|
|
}
|
|
|
|
|