Skip to content
Snippets Groups Projects
Commit 15c68e22 authored by kargl's avatar kargl
Browse files

2006-10-21 Steven G. Kargl <kargl@gcc.gnu.org>

        * runtime/error.c: Add errno.h
        (generate_error): Set iostat to errno on OS error.
        * libgfortran.h: Set ERROR_OS to 5000



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117939 138bc75d-0d04-0410-961f-82ee72b054a4
parent eda715e5
No related branches found
No related tags found
No related merge requests found
2006-10-21 Steven G. Kargl <kargl@gcc.gnu.org>
* runtime/error.c: Add errno.h
(generate_error): Set iostat to errno on OS error.
* libgfortran.h: Set ERROR_OS to 5000
2006-10-20 Francois-Xavier Coudert <coudert@clipper.ens.fr> 2006-10-20 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* generated/minval_r8.c: Regenerate. * generated/minval_r8.c: Regenerate.
......
...@@ -397,7 +397,7 @@ typedef enum ...@@ -397,7 +397,7 @@ typedef enum
ERROR_EOR = -2, ERROR_EOR = -2,
ERROR_END = -1, ERROR_END = -1,
ERROR_OK = 0, /* Indicates success, must be zero. */ ERROR_OK = 0, /* Indicates success, must be zero. */
ERROR_OS, /* Operating system error, more info in errno. */ ERROR_OS = 5000, /* Operating system error, more info in errno. */
ERROR_OPTION_CONFLICT, ERROR_OPTION_CONFLICT,
ERROR_BAD_OPTION, ERROR_BAD_OPTION,
ERROR_MISSING_OPTION, ERROR_MISSING_OPTION,
......
...@@ -34,6 +34,7 @@ Boston, MA 02110-1301, USA. */ ...@@ -34,6 +34,7 @@ Boston, MA 02110-1301, USA. */
#include <stdarg.h> #include <stdarg.h>
#include <string.h> #include <string.h>
#include <float.h> #include <float.h>
#include <errno.h>
#include "libgfortran.h" #include "libgfortran.h"
#include "../io/io.h" #include "../io/io.h"
...@@ -457,7 +458,7 @@ generate_error (st_parameter_common *cmp, int family, const char *message) ...@@ -457,7 +458,7 @@ generate_error (st_parameter_common *cmp, int family, const char *message)
{ {
/* Set the error status. */ /* Set the error status. */
if ((cmp->flags & IOPARM_HAS_IOSTAT)) if ((cmp->flags & IOPARM_HAS_IOSTAT))
*cmp->iostat = family; *cmp->iostat = (family == ERROR_OS) ? errno : family;
if (message == NULL) if (message == NULL)
message = message =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment