source: trunk/packages/xen-3.1/xen-3.1/tools/libxen/include/xen/api/xen_on_normal_exit.h @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 1.9 KB
Line 
1/*
2 * Copyright (c) 2006-2007, XenSource Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
17 */
18
19#ifndef XEN_ON_NORMAL_EXIT_H
20#define XEN_ON_NORMAL_EXIT_H
21
22
23#include <xen/api/xen_common.h>
24
25
26enum xen_on_normal_exit
27{
28    /**
29     * destroy the VM state
30     */
31    XEN_ON_NORMAL_EXIT_DESTROY,
32
33    /**
34     * restart the VM
35     */
36    XEN_ON_NORMAL_EXIT_RESTART
37};
38
39
40typedef struct xen_on_normal_exit_set
41{
42    size_t size;
43    enum xen_on_normal_exit contents[];
44} xen_on_normal_exit_set;
45
46/**
47 * Allocate a xen_on_normal_exit_set of the given size.
48 */
49extern xen_on_normal_exit_set *
50xen_on_normal_exit_set_alloc(size_t size);
51
52/**
53 * Free the given xen_on_normal_exit_set.  The given set must have been
54 * allocated by this library.
55 */
56extern void
57xen_on_normal_exit_set_free(xen_on_normal_exit_set *set);
58
59
60/**
61 * Return the name corresponding to the given code.  This string must
62 * not be modified or freed.
63 */
64extern const char *
65xen_on_normal_exit_to_string(enum xen_on_normal_exit val);
66
67
68/**
69 * Return the correct code for the given string, or set the session
70 * object to failure and return an undefined value if the given string does
71 * not match a known code.
72 */
73extern enum xen_on_normal_exit
74xen_on_normal_exit_from_string(xen_session *session, const char *str);
75
76
77#endif
Note: See TracBrowser for help on using the repository browser.