|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] xentop.c trivial fix
Hi.
I run:
xentop --delay=30 --iterations 2 --batch
I get output, 30 second delay, output, 30 second delay, exit.
I want output, 30 seconds delay, output, exit.
The following patch implements that behavior and I think this is likely
the desired behavior anyway. i.e. just a trivial bug in code.
# diff -U5 xentop.c.orig xentop.c
--- xentop.c.orig 2006-12-29 08:05:13.000000000 +0000
+++ xentop.c 2006-12-29 08:06:40.000000000 +0000
@@ -1053,13 +1053,13 @@
} else {
do {
gettimeofday(&curtime, NULL);
top();
oldtime = curtime;
- sleep(delay);
if ((!loop) && !(--iterations))
break;
+ sleep(delay);
} while (1);
}
/* Cleanup occurs in cleanup(), so no work to do here. */
Regards, Peter
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-devel] xentop.c trivial fix,
Peter <=
|
|
|
|
|