Xen Test Framework
version.h
Go to the documentation of this file.
1/*
2 * Xen public xen_version hypercall interface
3 */
4#ifndef __XEN_PUBLIC_VERSION_H__
5#define __XEN_PUBLIC_VERSION_H__
6
7/* arg == NULL; returns major:minor (16:16). */
8#define XENVER_version 0
9
10/* arg == xen_extraversion_t. (char[16]) */
11#define XENVER_extraversion 1
12typedef char xen_extraversion_t[16];
13
14/* arg == xen_compile_info_t. */
15#define XENVER_compile_info 2
17 char compiler[64];
18 char compile_by[16];
20 char compile_date[32];
21};
23
24#define XENVER_changeset 4
25typedef char xen_changeset_info_t[64];
26
27#endif /* __XEN_PUBLIC_VERSION_H__ */
28
29/*
30 * Local variables:
31 * mode: C
32 * c-file-style: "BSD"
33 * c-basic-offset: 4
34 * tab-width: 4
35 * indent-tabs-mode: nil
36 * End:
37 */
char compiler[64]
Definition: version.h:17
char compile_date[32]
Definition: version.h:20
char compile_domain[32]
Definition: version.h:19
char compile_by[16]
Definition: version.h:18
char xen_extraversion_t[16]
Definition: version.h:12
char xen_changeset_info_t[64]
Definition: version.h:25