summaryrefslogtreecommitdiffstats
path: root/gl/mountlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'gl/mountlist.h')
-rw-r--r--gl/mountlist.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/gl/mountlist.h b/gl/mountlist.h
index 9728e38b..e8ba1d96 100644
--- a/gl/mountlist.h
+++ b/gl/mountlist.h
@@ -1,6 +1,6 @@
1/* mountlist.h -- declarations for list of mounted file systems 1/* mountlist.h -- declarations for list of mounted file systems
2 2
3 Copyright (C) 1991-1992, 1998, 2000-2005, 2009-2024 Free Software 3 Copyright (C) 1991-1992, 1998, 2000-2005, 2009-2025 Free Software
4 Foundation, Inc. 4 Foundation, Inc.
5 5
6 This program is free software: you can redistribute it and/or modify 6 This program is free software: you can redistribute it and/or modify
@@ -46,8 +46,13 @@ struct mount_entry
46 struct mount_entry *me_next; 46 struct mount_entry *me_next;
47}; 47};
48 48
49/* Return a list of the currently mounted file systems, or NULL on error.
50 Add each entry to the tail of the list so that they stay in order.
51 If NEED_FS_TYPE is true, ensure that the file system type fields in
52 the returned list are valid. Otherwise, they might not be. */
49struct mount_entry *read_file_system_list (bool need_fs_type) 53struct mount_entry *read_file_system_list (bool need_fs_type)
50 _GL_ATTRIBUTE_MALLOC; 54 _GL_ATTRIBUTE_MALLOC;
55
51void free_mount_entry (struct mount_entry *entry); 56void free_mount_entry (struct mount_entry *entry);
52 57
53 58