projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bed7964
)
Fix handling of timeouts.
author
Ben Pfaff
<blp@cs.stanford.edu>
Mon, 20 Jun 2005 21:26:49 +0000
(21:26 +0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Mon, 20 Jun 2005 21:26:49 +0000
(21:26 +0000)
src/utils/pintos
patch
|
blob
|
history
diff --git
a/src/utils/pintos
b/src/utils/pintos
index 8721db313042bb35438dd1cf20856aa0f816c7e2..348c6abf3a7882e8b1e600c6e2cf2043c5108a6f 100755
(executable)
--- a/
src/utils/pintos
+++ b/
src/utils/pintos
@@
-682,10
+682,12
@@
sub relay_signal {
# Interrupts $pid and dies with a timeout error message.
sub timeout {
my ($pid) = @_;
- relay_signal ($pid, "INT");
+ kill "INT", $pid;
+ waitpid ($pid, 0);
+ seek (STDOUT, 0, 2);
my ($load_avg) = `uptime` =~ /(load average:.*)$/i;
- print "TIMEOUT after $timeout seconds";
+ print "
\n
TIMEOUT after $timeout seconds";
print " - $load_avg" if defined $load_avg;
print "\n";
- exit
(2)
;
+ exit
0
;
}