1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
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
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
1997-06-13 08:52:43 -07:00
|
|
|
#include <stdio.h>
|
2014-12-27 06:41:49 -08:00
|
|
|
#include <caml/mlvalues.h>
|
|
|
|
#include <caml/memory.h>
|
|
|
|
#include <caml/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_rename(value path1, value path2)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
2013-12-23 08:24:50 -08:00
|
|
|
CAMLparam2(path1, path2);
|
|
|
|
char * p1;
|
|
|
|
char * p2;
|
|
|
|
int ret;
|
2015-11-11 08:07:44 -08:00
|
|
|
caml_unix_check_path(path1, "rename");
|
|
|
|
caml_unix_check_path(path2, "rename");
|
2014-04-15 10:09:13 -07:00
|
|
|
p1 = caml_strdup(String_val(path1));
|
|
|
|
p2 = caml_strdup(String_val(path2));
|
2013-12-23 08:24:50 -08:00
|
|
|
caml_enter_blocking_section();
|
|
|
|
ret = rename(p1, p2);
|
|
|
|
caml_leave_blocking_section();
|
|
|
|
caml_stat_free(p2);
|
|
|
|
caml_stat_free(p1);
|
|
|
|
if (ret == -1)
|
1995-05-08 08:18:32 -07:00
|
|
|
uerror("rename", path1);
|
2013-12-23 08:24:50 -08:00
|
|
|
CAMLreturn(Val_unit);
|
1995-05-08 08:18:32 -07:00
|
|
|
}
|