summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libdiskfs/ChangeLog4
-rw-r--r--libdiskfs/diskfs.h8
2 files changed, 9 insertions, 3 deletions
diff --git a/libdiskfs/ChangeLog b/libdiskfs/ChangeLog
index a6f3dbc5..f3073ce5 100644
--- a/libdiskfs/ChangeLog
+++ b/libdiskfs/ChangeLog
@@ -1,3 +1,7 @@
+2001-11-20 Neal H Walfield <neal@cs.uml.edu>
+
+ * diskfs.h (diskfs_boot_filesystem): Documentation fix.
+
2002-05-08 Roland McGrath <roland@frob.com>
* sync-interval.c (diskfs_set_sync_interval): Cast int to intptr_t
diff --git a/libdiskfs/diskfs.h b/libdiskfs/diskfs.h
index 42c63549..aaae96a5 100644
--- a/libdiskfs/diskfs.h
+++ b/libdiskfs/diskfs.h
@@ -149,9 +149,11 @@ extern mach_port_t diskfs_fsys_identity;
file systems, to give the procserver. */
extern char **diskfs_argv;
-/* When this is a bootstrap filesystem, the multiboot kernel command line
- passed from the kernel. If not a bootstrap filesystem, it is 0, so it
- can be used to distinguish between the two cases. */
+/* When this is a bootstrap filesystem, the multiboot kernel command
+ line passed from the kernel. If not a bootstrap filesystem, it is
+ 0. As such, it can be used to distinguish between the two cases.
+ Note: this is only valid after the arguments have been parsed by,
+ for example, diskfs_init_main. */
extern const char *diskfs_boot_command_line;
#define diskfs_boot_filesystem() (diskfs_boot_command_line != 0)