Added `all_fs' parameter.

1998-07-24  Martin Baulig  <martin@home-of-linux.org>

	* sysdeps/common/mountlist.c (glibtop_get_mountlist_s):
	Added `all_fs' parameter.
This commit is contained in:
Martin Baulig
1998-07-24 14:43:16 +00:00
committed by Martin Baulig
parent f3f051ecba
commit aa6d16e47b
7 changed files with 23 additions and 11 deletions

View File

@@ -69,14 +69,14 @@ main (int argc, char *argv [])
printf ("sbrk (0) = %p\n\n", sbrk (0));
for (c = 0; c < PROFILE_COUNT; c++) {
mount_entries = glibtop_get_mountlist (&mount_list);
mount_entries = glibtop_get_mountlist (&mount_list, 1);
glibtop_free (mount_entries);
}
printf ("sbrk (0) = %p\n\n", sbrk (0));
mount_entries = glibtop_get_mountlist (&mount_list);
mount_entries = glibtop_get_mountlist (&mount_list, 1);
if (mount_entries == NULL)
_exit (1);