aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/public/dom0_ops.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-06 15:24:22 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-06 15:24:22 +0000
commit1271b79339cd753accdf092024485ee5b1351de6 (patch)
tree2fc6eaf0bade3b557cf91bf6b60b472b726bca20 /xen/include/public/dom0_ops.h
parentce5f74eea0f56f4649dbb53ae6e1758aa28c8dd8 (diff)
downloadxen-1271b79339cd753accdf092024485ee5b1351de6.tar.gz
xen-1271b79339cd753accdf092024485ee5b1351de6.tar.bz2
xen-1271b79339cd753accdf092024485ee5b1351de6.zip
More time-interface fixes.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/public/dom0_ops.h')
-rw-r--r--xen/include/public/dom0_ops.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/include/public/dom0_ops.h b/xen/include/public/dom0_ops.h
index f5bad95bad..6f8cb22cac 100644
--- a/xen/include/public/dom0_ops.h
+++ b/xen/include/public/dom0_ops.h
@@ -131,14 +131,14 @@ typedef struct {
} dom0_debug_t;
/*
- * Set clock such that it would read <secs,usecs> after 00:00:00 UTC,
+ * Set clock such that it would read <secs,nsecs> after 00:00:00 UTC,
* 1 January, 1970 if the current system time was <system_time>.
*/
#define DOM0_SETTIME 17
typedef struct {
/* IN variables. */
u32 secs;
- u32 usecs;
+ u32 nsecs;
u64 system_time;
} dom0_settime_t;