Changeset bb57a00 in mainline
- Timestamp:
- 2019-08-07T11:17:11Z (5 years ago)
- Children:
- 4ff66ae
- Parents:
- 4667b5c
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-13 01:57:56)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 11:17:11)
- Location:
- uspace/srv
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/rd/rd.c
r4667b5c rbb57a00 218 218 219 219 printf("%s: Accepting connections\n", NAME); 220 task_retval(0); 220 221 async_manager(); 221 222 -
uspace/srv/locsrv/locsrv.c
r4667b5c rbb57a00 1678 1678 1679 1679 printf("%s: Accepting connections\n", NAME); 1680 task_retval(0); 1680 1681 async_manager(); 1681 1682 -
uspace/srv/ns/ns.c
r4667b5c rbb57a00 130 130 131 131 printf("%s: Accepting connections\n", NAME); 132 // TODO enable NS to use task_retval(0) 132 133 async_manager(); 133 134 -
uspace/srv/sysman/main.c
r4667b5c rbb57a00 36 36 #include <stdio.h> 37 37 #include <str.h> 38 #include <taskman.h> 38 39 39 40 #include "repo.h" … … 204 205 int main(int argc, char *argv[]) 205 206 { 207 async_set_client_connection(sysman_connection); 206 208 printf(NAME ": HelenOS system daemon\n"); 207 209 … … 235 237 async_usleep(1 * 1000000); 236 238 sysman_log(LVL_DEBUG, "Debugging pause ended.\n"); 237 /* Queue first job from sequence */238 prepare_and_run_job(&target_sequence[0]);239 239 240 240 /* We're service too */ … … 246 246 } 247 247 248 /* We're almost ready, scan for boot time tasks */ 249 rc = taskman_dump_events(); 250 if (rc != EOK) { 251 sysman_log(LVL_FATAL, 252 "Cannot scan boot time tasks (%i).", rc); 253 return rc; 254 } 255 256 /* Queue first job from sequence */ 257 prepare_and_run_job(&target_sequence[0]); 258 248 259 /* Start sysman server */ 249 async_set_client_connection(sysman_connection);250 260 251 261 printf(NAME ": Accepting connections\n"); 262 task_retval(0); 252 263 async_manager(); 253 264 -
uspace/srv/vfs/vfs.c
r4667b5c rbb57a00 160 160 */ 161 161 printf("%s: Accepting connections\n", NAME); 162 task_retval(0); 162 163 async_manager(); 163 164 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.