swsusp.c 528 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Support for suspend and resume on s390
  3. *
  4. * Copyright IBM Corp. 2009
  5. *
  6. * Author(s): Hans-Joachim Picht <hans@linux.vnet.ibm.com>
  7. *
  8. */
  9. /*
  10. * save CPU registers before creating a hibernation image and before
  11. * restoring the memory state from it
  12. */
  13. void save_processor_state(void)
  14. {
  15. /* implentation contained in the
  16. * swsusp_arch_suspend function
  17. */
  18. }
  19. /*
  20. * restore the contents of CPU registers
  21. */
  22. void restore_processor_state(void)
  23. {
  24. /* implentation contained in the
  25. * swsusp_arch_resume function
  26. */
  27. }