diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-07-19 18:07:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-07-19 18:07:04 +0000 |
commit | 580aebf0de48364edf0c72fe3dd08562ed62d4b3 (patch) | |
tree | 91feadf29b1f5a6a9d5cbc8feaea96c9646b592a /sys/kern | |
parent | 5aa7d301838b855aaa4533dc25510791ce135b75 (diff) |
say that we are unhibernating..
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/subr_hibernate.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/subr_hibernate.c b/sys/kern/subr_hibernate.c index f6bb3068210..0bb12943452 100644 --- a/sys/kern/subr_hibernate.c +++ b/sys/kern/subr_hibernate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_hibernate.c,v 1.45 2012/07/16 12:31:15 stsp Exp $ */ +/* $OpenBSD: subr_hibernate.c,v 1.46 2012/07/19 18:07:03 deraadt Exp $ */ /* * Copyright (c) 2011 Ariane van der Steldt <ariane@stack.nl> @@ -1099,6 +1099,8 @@ hibernate_resume(void) return; } + printf("Unhibernating...\n"); + /* Read the image from disk into the image (pig) area */ if (hibernate_read_image(&disk_hiber_info)) goto fail; |