#ifndef _PROCUTILS_H
#define _PROCUTILS_H

// get the instantaneous system load average
float getSystemLoadAverage();

// get the average processor usage since the function was last called
void getProcessorUsage(float *user, float *system);

#endif
