Changeset 8565a42 in mainline for uspace/srv/taskmon/taskmon.c
- Timestamp:
- 2018-03-02T20:34:50Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1a81f69, d5e5fd1
- Parents:
- 3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
- git-committer:
- GitHub <noreply@…> (2018-03-02 20:34:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/taskmon/taskmon.c
r3061bc1 r8565a42 135 135 { 136 136 printf("%s: Task Monitoring Service\n", NAME); 137 137 138 138 #ifdef CONFIG_WRITE_CORE_FILES 139 139 write_core_files = true; … … 145 145 return -1; 146 146 } 147 147 148 148 async_set_fallback_port_handler(corecfg_client_conn, NULL); 149 149 150 150 errno_t rc = loc_server_register(NAME); 151 151 if (rc != EOK) { … … 154 154 return -1; 155 155 } 156 156 157 157 service_id_t sid; 158 158 rc = loc_service_register(SERVICE_NAME_CORECFG, &sid); … … 162 162 return -1; 163 163 } 164 164 165 165 task_retval(0); 166 166 async_manager(); 167 167 168 168 return 0; 169 169 }
Note:
See TracChangeset
for help on using the changeset viewer.