home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / include / xen / xen-ops.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  349 b   |  18 lines

  1. #ifndef INCLUDE_XEN_OPS_H
  2. #define INCLUDE_XEN_OPS_H
  3.  
  4. #include <linux/percpu.h>
  5.  
  6. DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu);
  7.  
  8. void xen_pre_suspend(void);
  9. void xen_post_suspend(int suspend_cancelled);
  10.  
  11. void xen_mm_pin_all(void);
  12. void xen_mm_unpin_all(void);
  13.  
  14. void xen_timer_resume(void);
  15. void xen_arch_resume(void);
  16.  
  17. #endif /* INCLUDE_XEN_OPS_H */
  18.