summaryrefslogtreecommitdiff
path: root/src/umount.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-10-14 18:55:04 +0200
committerLennart Poettering <lennart@poettering.net>2010-10-14 18:55:04 +0200
commit12aad1d075a6cfa23920b977146e79d8154f2540 (patch)
tree4b473cd954753c3e597dfe5336295a77540e10aa /src/umount.h
parent6f3f9deb0b63242de8240b38ffe4d9a2a0b95956 (diff)
shutdown: loop only as long as we manage to unmount/detach devices, give up immediately when we are stuck
Diffstat (limited to 'src/umount.h')
-rw-r--r--src/umount.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/umount.h b/src/umount.h
index c06ca867a..acdf09acf 100644
--- a/src/umount.h
+++ b/src/umount.h
@@ -22,12 +22,12 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-int umount_all(void);
+int umount_all(bool *changed);
-int swapoff_all(void);
+int swapoff_all(bool *changed);
-int loopback_detach_all(void);
+int loopback_detach_all(bool *changed);
-int dm_detach_all(void);
+int dm_detach_all(bool *changed);
#endif