Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_VM), | intent(inout) | :: | vm | |||
integer, | intent(out), | optional | :: | rc |
recursive subroutine ESMF_VMSetInitCreated(vm, rc) ! ! !ARGUMENTS: type(ESMF_VM), intent(inout) :: vm integer, intent(out), optional :: rc ! ! ! !DESCRIPTION: ! Set init code in VM object to "CREATED". ! ! The arguments are: ! \begin{description} ! \item[vm] ! Specified {\tt ESMF\_VM} object. ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI !------------------------------------------------------------------------------ ! initialize return code; assume routine not implemented if (present(rc)) rc = ESMF_RC_NOT_IMPL ! Set init code ESMF_INIT_SET_CREATED(vm) ! return successfully if (present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_VMSetInitCreated