~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to xen/include/xen/shutdown.h

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __XEN_SHUTDOWN_H__
 
2
#define __XEN_SHUTDOWN_H__
 
3
 
 
4
/* opt_noreboot: If true, machine will need manual reset on error. */
 
5
extern int opt_noreboot;
 
6
 
 
7
void dom0_shutdown(u8 reason);
 
8
 
 
9
void machine_restart(unsigned int delay_millisecs);
 
10
void machine_halt(void);
 
11
void machine_power_off(void);
 
12
 
 
13
#endif /* __XEN_SHUTDOWN_H__ */