Changeset a35b458 in mainline for uspace/srv/vfs/vfs.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/vfs/vfs.c
r3061bc1 ra35b458 62 62 ipc_call_t call; 63 63 ipc_callid_t callid = async_get_call(&call); 64 64 65 65 if (!IPC_GET_IMETHOD(call)) 66 66 break; 67 67 68 68 switch (IPC_GET_IMETHOD(call)) { 69 69 case IPC_M_PAGE_IN: … … 91 91 92 92 printf("%s: HelenOS VFS server\n", NAME); 93 93 94 94 /* 95 95 * Initialize VFS node hash table. … … 100 100 return ENOMEM; 101 101 } 102 102 103 103 /* 104 104 * Allocate and initialize the Path Lookup Buffer. … … 111 111 } 112 112 memset(plb, 0, PLB_SIZE); 113 113 114 114 /* 115 115 * Set client data constructor and destructor. … … 138 138 async_event_task_subscribe(EVENT_TASK_STATE_CHANGE, notification_handler, 139 139 NULL); 140 140 141 141 /* 142 142 * Register at the naming service. … … 147 147 return rc; 148 148 } 149 149 150 150 /* 151 151 * Start accepting connections.
Note:
See TracChangeset
for help on using the changeset viewer.