#! /bin/bash


# default libexecdir used to bootstrap scripts
libexecdir=${GLOBUS_LOCATION}/libexec

# load GRIS CPU common code and initialization
. ${libexecdir}/grid-info-mem-common

#########################################################################

probe_resource_mem ()
{
        _mem_size_mbytes=0
        _mem_free_mbytes=0

        _vm_free_mbytes=0
        _vm_size_mbytes=0

	# run this in initialized subshell environment
	emit_resource_mem_descriptions
}

#############
# do the work
probe_resource_mem
