Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(out) | :: | virtMemPet | |||
integer, | intent(out) | :: | physMemPet | |||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_VMGetMemInfo(virtMemPet, physMemPet, rc) ! ! !ARGUMENTS: integer, intent(out) :: virtMemPet integer, intent(out) :: physMemPet integer, intent(out), optional :: rc ! ! !DESCRIPTION: ! Get memory info from the system for this PET. ! ! The arguments are: ! \begin{description} ! \item[virtMemPet] ! Virtual memory in kB currently used by this PET. ! \item[physMemPet] ! Physical memory in kB currently used by this PET. ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI !------------------------------------------------------------------------------ integer :: localrc ! local return code ! initialize return code; assume routine not implemented localrc = ESMF_RC_NOT_IMPL if (present(rc)) rc = ESMF_RC_NOT_IMPL ! Call into the C++ interface. call c_esmc_vmgetmeminfo(virtMemPet, physMemPet, localrc) if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, & ESMF_CONTEXT, rcToReturn=rc)) return ! return successfully if (present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_VMGetMemInfo