Changeset 4224ef7 in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2019-08-06T18:18:37Z (5 years ago)
- Children:
- e55741e
- Parents:
- dd5c623
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-05-11 16:50:40)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-06 18:18:37)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
rdd5c623 r4224ef7 40 40 #include <ipc/services.h> 41 41 #include <abi/ipc/methods.h> 42 #include <libarch/config.h>43 42 #include <ns.h> 43 #include <as.h> 44 44 #include <async.h> 45 #include <atomic.h> 45 46 #include <errno.h> 46 47 #include <str_error.h> 47 48 #include <stdio.h> 49 #include <ipc/services.h> 50 #include <macros.h> 48 51 #include <stdbool.h> 52 #include <stdio.h> 49 53 #include <str.h> 50 #include <as.h> 51 #include <macros.h> 54 #include <sysman/broker.h> 52 55 #include "vfs.h" 53 56 … … 145 148 146 149 /* 150 * Let sysman know we are broker 151 */ 152 rc = sysman_broker_register(); 153 if (rc != EOK) { 154 printf("%s: Error registering at sysman (%i)\n", NAME, rc); 155 return rc; 156 } 157 158 /* 147 159 * Start accepting connections. 148 160 */
Note:
See TracChangeset
for help on using the changeset viewer.