BUG: Problems Passing Arguments to ENTRY Statement

Last reviewed: July 6, 1995
Article ID: Q73203
The information in this article applies to:
  • Microsoft FORTRAN for OS/2, versions 4.1, 5.0, and 5.1

SYMPTOMS

Programs compiled with Microsoft FORTRAN versions 4.0, 4.01, 4.1, 5.0, and 5.1 can generate a protection violation when run under OS/2, if a program contains the following:

  1. An ENTRY statement to enter a SUBROUTINE or external FUNCTION

  2. A CALL to the SUBROUTINE or external FUNCTION

  3. An argument that is referenced in the ENTRY statement but not in the SUBROUTINE or external FUNCTION statement, and is then used in the ENTRY section of the SUBROUTINE or external FUNCTION.

According to the ANSI FORTRAN 77 standard, the order, number, type, and names of the formal arguments in an ENTRY statement may be different from the order, number, type, and names of the formal arguments in the FUNCTION statement or SUBROUTINE statement and other ENTRY statements in the same subroutine.

RESOLUTION

To avoid this problem, pass the argument to the SUBROUTINE or external FUNCTION as well as to the ENTRY point.

STATUS

Microsoft has confirmed this to be a problem in FORTRAN versions 4.0, 4.01, 4.1, 5.0, and 5.1 for OS/2. We are researching this problem and will post new information here as it becomes available.

MORE INFORMATION

The following example illustrates the problem:

      i=0
      call sub
      end

      subroutine sub
      entry entersub(i)
      i=0
      i=i+1
      write(*,*) i
      end

The program above should produce the following output:

      1

Instead, a protection violation is generated when the program is run under OS/2.

Passing the argument to the SUBROUTINE or external FUNCTION in addition to the ENTRY point will prevent the problem from occurring. The following program example illustrates the solution:

      i=0
      call sub(i)
      end

c ** Argument passed to subroutine **

      subroutine sub(i)
      entry entersub(i)
      i=0
      i=i+1
      write(*,*) i
      end


Additional reference words: 4.00 4.01 4.10 5.00 5.10
KBCategory: kbprg kbbuglist
KBSubcategory: FORTLngIss


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 6, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.