#------------------------------------------- # method: getExitCode() # Author: Logan logan@eng.somecompany.com # Usage: $ahm->getExitCode(); # return : int # Gets the exit code from a process and returns it #------------------------------------------- sub getExitCode { my $ap = shift; return($ap->{procExitCode}); }