Changes in uspace/srv/fs/tmpfs/tmpfs.c [4979403:efcebe1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
r4979403 refcebe1 59 59 .concurrent_read_write = false, 60 60 .write_retains_size = false, 61 .instance = 0,62 61 }; 63 62 … … 65 64 { 66 65 printf(NAME ": HelenOS TMPFS file system server\n"); 67 68 if (argc == 3) {69 if (!str_cmp(argv[1], "--instance"))70 tmpfs_vfs_info.instance = strtol(argv[2], NULL, 10);71 else {72 printf(NAME " Unrecognized parameters");73 return -1;74 }75 }76 66 77 67 if (!tmpfs_init()) {
Note:
See TracChangeset
for help on using the changeset viewer.