diff options
author | Roland McGrath <roland@gnu.org> | 2001-02-26 04:14:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-02-26 04:14:03 +0000 |
commit | 193235a8ac2e8437c6b0a1cd8a7726d085e64cb3 (patch) | |
tree | 426b12e9ca5e57a4999142b157555a26464e14d7 /tmpfs/tmpfs.c | |
parent | ec5ad262100068c11b985dc9257fa9b8b8e34da7 (diff) |
2001-02-25 Roland McGrath <roland@frob.com>
* node.c (diskfs_S_file_get_storage_info): New function.
* tmpfs.c (diskfs_synchronous): New variable.
Diffstat (limited to 'tmpfs/tmpfs.c')
-rw-r--r-- | tmpfs/tmpfs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tmpfs/tmpfs.c b/tmpfs/tmpfs.c index caef3861..200f9394 100644 --- a/tmpfs/tmpfs.c +++ b/tmpfs/tmpfs.c @@ -1,5 +1,5 @@ /* Main program and global state for tmpfs. - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -47,7 +47,9 @@ int diskfs_shortcurt_fifo = 1; int diskfs_shortcurt_ifsock = 1; struct node *diskfs_root_node; +mach_port_t default_pager; +off_t tmpfs_page_limit, tmpfs_space_used; error_t diskfs_set_statfs (struct statfs *st) @@ -91,6 +93,7 @@ diskfs_reload_global_state () return 0; } +int diskfs_synchronous = 0; /* Parse a command line option. */ |