source: XIOS/dev/branch_yushan_merged/src/interface/fortran_attr/context_interface_attr.F90 @ 1205

Last change on this file since 1205 was 581, checked in by rlacroix, 9 years ago

Fix the Fortran interface generation to avoid generating dead code that caused a timer not to be stopped.

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 1.4 KB
Line 
1! * ************************************************************************** *
2! *               Interface auto generated - do not modify                     *
3! * ************************************************************************** *
4#include "../fortran/xios_fortran_prefix.hpp"
5
6MODULE context_interface_attr
7  USE, INTRINSIC :: ISO_C_BINDING
8
9  INTERFACE
10    ! Do not call directly / interface FORTRAN 2003 <-> C99
11
12    SUBROUTINE cxios_set_context_output_dir(context_hdl, output_dir, output_dir_size) BIND(C)
13      USE ISO_C_BINDING
14      INTEGER (kind = C_INTPTR_T), VALUE :: context_hdl
15      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: output_dir
16      INTEGER  (kind = C_INT)     , VALUE        :: output_dir_size
17    END SUBROUTINE cxios_set_context_output_dir
18
19    SUBROUTINE cxios_get_context_output_dir(context_hdl, output_dir, output_dir_size) BIND(C)
20      USE ISO_C_BINDING
21      INTEGER (kind = C_INTPTR_T), VALUE :: context_hdl
22      CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: output_dir
23      INTEGER  (kind = C_INT)     , VALUE        :: output_dir_size
24    END SUBROUTINE cxios_get_context_output_dir
25
26    FUNCTION cxios_is_defined_context_output_dir(context_hdl) BIND(C)
27      USE ISO_C_BINDING
28      LOGICAL(kind=C_BOOL) :: cxios_is_defined_context_output_dir
29      INTEGER (kind = C_INTPTR_T), VALUE :: context_hdl
30    END FUNCTION cxios_is_defined_context_output_dir
31
32  END INTERFACE
33
34END MODULE context_interface_attr
Note: See TracBrowser for help on using the repository browser.