Changeset 4979403 in mainline for uspace/srv/fs/locfs/locfs.c
- Timestamp:
- 2011-09-23T15:39:07Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 286286c
- Parents:
- 8895d05
- git-author:
- Maurizio Lombardi <m.lombardi85@…> (2011-09-23 15:39:07)
- git-committer:
- Jakub Jermar <jakub@…> (2011-09-23 15:39:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/locfs/locfs.c
r8895d05 r4979403 55 55 .concurrent_read_write = false, 56 56 .write_retains_size = false, 57 .instance = 0, 57 58 }; 58 59 … … 61 62 printf("%s: HelenOS Device Filesystem\n", NAME); 62 63 64 if (argc == 3) { 65 if (!str_cmp(argv[1], "--instance")) 66 locfs_vfs_info.instance = strtol(argv[2], NULL, 10); 67 else { 68 printf(NAME " Unrecognized parameters"); 69 return -1; 70 } 71 } 72 73 63 74 if (!locfs_init()) { 64 75 printf("%s: failed to initialize locfs\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.