[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[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


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.