decouple file system server start/termination from mount/umount

This commit is contained in:
Dirk Vogt
2010-11-23 19:34:56 +00:00
parent 41ae712b50
commit 9ed280d1ec
21 changed files with 121 additions and 132 deletions

View File

@@ -68,9 +68,9 @@ vir_bytes *pc;
* complete stack image, including pointers, args, environ, etc. The stack
* is copied to a buffer inside VFS, and then to the new core image.
*/
int r, r1, sep_id, round, proc_s, hdrlen, load_text, allow_setuid;
vir_bytes text_bytes, data_bytes, bss_bytes;
phys_bytes tot_bytes; /* total space for program, including gap */
int r, r1, sep_id=0, round, proc_s, hdrlen=0, load_text, allow_setuid;
vir_bytes text_bytes=0, data_bytes=0, bss_bytes=0;
phys_bytes tot_bytes=0; /* total space for program, including gap */
vir_bytes stack_top, vsp;
off_t off;
uid_t new_uid;