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 <errno.h>
|
|
|
|
#include <mlvalues.h>
|
|
|
|
#include <alloc.h>
|
|
|
|
|
|
|
|
extern int error_table[];
|
|
|
|
|
|
|
|
#ifdef HAS_STRERROR
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
extern char * strerror(int);
|
1995-05-08 08:18:32 -07:00
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
value unix_error_message(value err)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
int errnum;
|
1998-02-26 04:53:08 -08:00
|
|
|
errnum = Is_block(err) ? Int_val(Field(err, 0)) : error_table[Int_val(err)];
|
1996-02-13 08:28:24 -08:00
|
|
|
return copy_string(strerror(errnum));
|
1995-05-08 08:18:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
extern int sys_nerr;
|
|
|
|
extern char *sys_errlist[];
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
value unix_error_message(value err)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
int errnum;
|
1998-02-26 04:53:08 -08:00
|
|
|
errnum = Is_block(err) ? Int_val(Field(err, 0)) : error_table[Int_val(err)];
|
1995-05-08 08:18:32 -07:00
|
|
|
if (errnum < 0 || errnum >= sys_nerr) {
|
|
|
|
return copy_string("Unknown error");
|
|
|
|
} else {
|
|
|
|
return copy_string(sys_errlist[errnum]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|