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 */
|
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <mlvalues.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.h"
|
1995-05-08 08:18:32 -07:00
|
|
|
|
|
|
|
#ifdef HAS_DUP2
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
value unix_dup2(value fd1, value fd2) /* ML */
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
if (dup2(Int_val(fd1), Int_val(fd2)) == -1) uerror("dup2", Nothing);
|
|
|
|
return Val_unit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
static int do_dup2(int fd1, int fd2)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
fd = dup(fd1);
|
|
|
|
if (fd == -1) return -1;
|
|
|
|
if (fd == fd2) return 0;
|
|
|
|
res = do_dup2(fd1, fd2);
|
|
|
|
close(fd);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2000-04-05 11:30:22 -07:00
|
|
|
value unix_dup2(value fd1, value fd2)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
close(Int_val(fd2));
|
|
|
|
if (do_dup2(Int_val(fd1), Int_val(fd2)) == -1) uerror("dup2", Nothing);
|
|
|
|
return Val_unit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|