#! /bin/bash

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

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

report_resource_cpu ()
{

        while read line
        do
            eval "$line"
        done < "${_probe_cache}"




	# update cache data with fresh uptime info
	probe_resource_cpufree_uptime

	# run this in initialized subshell environment
	emit_resource_cpu_summary_attrs 
}

#############
# do the work
report_resource_cpu
