Changeset a35b458 in mainline for uspace/srv/fs/tmpfs/tmpfs.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
r3061bc1 ra35b458 75 75 } 76 76 } 77 77 78 78 if (!tmpfs_init()) { 79 79 printf(NAME ": failed to initialize TMPFS\n"); 80 80 return -1; 81 81 } 82 82 83 83 async_sess_t *vfs_sess = service_connect_blocking(SERVICE_VFS, 84 84 INTERFACE_VFS_DRIVER, 0); … … 87 87 return -1; 88 88 } 89 89 90 90 errno_t rc = fs_register(vfs_sess, &tmpfs_vfs_info, &tmpfs_ops, 91 91 &tmpfs_libfs_ops); … … 94 94 return rc; 95 95 } 96 96 97 97 printf(NAME ": Accepting connections\n"); 98 98 task_retval(0); 99 99 async_manager(); 100 100 101 101 /* Not reached */ 102 102 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.