How does hibernation work?

10

1

I'm wondering how hibernation works. Obviously it writes the contents of RAM to disk, but is there anything else? does it save/restore CPU state? cache state? anything else?

RCIX

Posted 2009-09-11T10:09:19.380

Reputation: 5 415

2Dejavu much? I was just about to ask this question ;) – Josh Hunt – 2009-09-11T10:13:28.480

Answers

8

Hibernation is the same as switching off the computer, as far as devices go. It saves the CPU and RAM, so processes will pick off from where they were, but there is no guarantee that a suspended device activity will continue to work (example if you were copying from cd and the cd weren't there at wake-up).

From Understanding hibernation, standby, and other power management features :

Hibernation mode tells your computer to:

  • Write everything in RAM to disk.
  • Turn off the monitor and hard disk.
  • Turn the computer off.

Hibernation mode is essentially switching off the computer, except it is able to restore the OS by reading back into memory the contents of the file it wrote before going into hibernation.

harrymc

Posted 2009-09-11T10:09:19.380

Reputation: 306 093

2

Yes, it saves CPU state too. Device states are partially saved, partially discarded, and I don't remember anything else that exists not in memory or storage.

wRAR

Posted 2009-09-11T10:09:19.380

Reputation: 315