123456789101112131415161718192021222324252627282930 |
- /*
- * Support for suspend and resume on s390
- *
- * Copyright IBM Corp. 2009
- *
- * Author(s): Hans-Joachim Picht <hans@linux.vnet.ibm.com>
- *
- */
- /*
- * save CPU registers before creating a hibernation image and before
- * restoring the memory state from it
- */
- void save_processor_state(void)
- {
- /* implentation contained in the
- * swsusp_arch_suspend function
- */
- }
- /*
- * restore the contents of CPU registers
- */
- void restore_processor_state(void)
- {
- /* implentation contained in the
- * swsusp_arch_resume function
- */
- }
|