gcc-patches@gcc.gnu.org
[Top] [All Lists]

Re: [PATCH] Thread-safe libgfortran (PRs fortran/14943 and fortran/21647

Subject: Re: [PATCH] Thread-safe libgfortran PRs fortran/14943 and fortran/21647
From: David Edelsohn
Date: Wed, 23 Nov 2005 00:20:17 -0500
        The patch also appears to have reintroduced two regressions on at
least AIX and PPC Linux.

gfortran.dg/dev_null.f90
gfortran.dg/write_to_null.f90

are failing with a "File already opened in another unit" error.  This
happens if the tests are run with no controlling terminal, so stdin is
/dev/null.  If I compile the testcases above and run them manually at a
shell prompt, they succeed.  If I run with

$ ./a.out < /dev/null

they fail.

        This is suppose to be handled in
libgfortran/io/open.c:new_unit()

  if (u2 != NULL
      && (options.stdin_unit < 0 || u->unit_number != options.stdin_unit)
      && (options.stdout_unit < 0 || u->unit_number != options.stdout_unit)
      && (options.stderr_unit < 0 || u->unit_number != options.stderr_unit))

but something now is broken.

David

<Prev in Thread] Current Thread [Next in Thread>