Ignore:
Timestamp:
11/07/16 17:55:55 (7 years ago)
Author:
oabramkina
Message:

My branch

Location:
XIOS/dev/dev_olga
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_olga/src/interface/fortran/idata.F90

    r965 r983  
    77   INTERFACE ! Ne pas appeler directement/Interface FORTRAN 2003 <-> C99 
    88 
    9       SUBROUTINE  cxios_init_server() BIND(C) 
     9      SUBROUTINE  cxios_init_server(server_level) BIND(C) 
     10         USE ISO_C_BINDING 
     11         INTEGER  (kind = C_INT)    , VALUE         :: server_level 
    1012      END SUBROUTINE cxios_init_server 
    1113 
     
    451453   CONTAINS ! Fonctions disponibles pour les utilisateurs. 
    452454 
    453    SUBROUTINE  xios(init_server)() 
    454    IMPLICIT NONE 
    455      CALL cxios_init_server() 
     455   SUBROUTINE  xios(init_server)(server_level) 
     456   IMPLICIT NONE 
     457       INTEGER  (kind = C_INT), INTENT(IN)         :: server_level 
     458       CALL cxios_init_server(server_level) 
    456459   END SUBROUTINE xios(init_server) 
    457460 
Note: See TracChangeset for help on using the changeset viewer.