Changeset e8747bd8 in mainline
- Timestamp:
- 2019-08-07T09:20:54Z (6 years ago)
- Children:
- 2df7d824
- Parents:
- 012dd8e
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-01 15:43:57)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:20:54)
- Location:
- uspace/srv
- Files:
-
- 2 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/logger/main.c
r012dd8e re8747bd8 83 83 84 84 printf("%s: Accepting connections\n", NAME); 85 86 task_retval(EOK); 85 87 async_manager(); 86 88 -
uspace/srv/sysman/Makefile
r012dd8e re8747bd8 50 50 units/unit_tgt.c \ 51 51 units/unit_svc.c \ 52 sm_task.c \ 52 53 util.c 53 54 -
uspace/srv/sysman/configuration.c
r012dd8e re8747bd8 38 38 #include "log.h" 39 39 40 // TODO rename to repository (dynamic nature of units storage, and do not name it godlike Manager :-) 41 40 42 LIST_INITIALIZE(units); 41 43 -
uspace/srv/sysman/connection_ctl.c
r012dd8e re8747bd8 38 38 39 39 40 // TODO possibly provide as type-safe function + macro in sysman.h for generic boxing 40 41 static ipc_callid_t *box_callid(ipc_callid_t iid) 41 42 { -
uspace/srv/sysman/main.c
r012dd8e re8747bd8 44 44 #include "log.h" 45 45 #include "sysman.h" 46 #include "sm_task.h" 46 47 #include "unit.h" 47 48 … … 208 209 * Initialize global structures 209 210 */ 211 // TODO check return values and abort start 210 212 configuration_init(); 211 213 sysman_events_init(); 212 214 job_queue_init(); 215 sm_task_init(); 213 216 214 217 /* … … 230 233 231 234 sysman_log(LVL_DEBUG, "Debugging pause...\n"); 232 async_usleep(10 * 1000000); 235 async_usleep(1 * 1000000); 236 sysman_log(LVL_DEBUG, "Debugging pause ended.\n"); 233 237 /* Queue first job from sequence */ 234 238 prepare_and_run_job(&target_sequence[0]); -
uspace/srv/sysman/sysman.c
r012dd8e re8747bd8 35 35 #include "log.h" 36 36 #include "sysman.h" 37 #include "task.h" 37 38 #include "unit.h" 38 39 … … 401 402 void sysman_event_unit_exposee_created(void *data) 402 403 { 403 unit_t *unit = data; 404 unit_exposee_created(unit); 404 unit_exposee_created(data); 405 405 } 406 406 407 407 void sysman_event_unit_failed(void *data) 408 408 { 409 unit_t *unit = data; 410 unit_fail(unit); 409 unit_fail(data); 411 410 } 412 411 … … 415 414 notify_observers(data); 416 415 } 416 -
uspace/srv/sysman/sysman.h
r012dd8e re8747bd8 47 47 extern size_t sysman_observers_count(void *); 48 48 49 // TODO move particular events to separate file? (or move event impl there?) 49 50 50 51 extern void sysman_event_job_process(void *); -
uspace/srv/sysman/units/unit_svc.c
r012dd8e re8747bd8 85 85 assert(unit->state == STATE_STOPPED); 86 86 87 int rc = task_spawnv( NULL, NULL, u_svc->exec_start.path,87 int rc = task_spawnv(&u_svc->main_task_id, NULL, u_svc->exec_start.path, 88 88 u_svc->exec_start.argv); 89 89 … … 96 96 97 97 /* 98 * This is temporary workaround, until proper reporting from brokers99 * about exposees will work. We assume the service succesfully starts100 * in a moment. Applies to naming service only.101 */102 if (str_cmp(unit->name, "devman.svc") == 0 ||103 str_cmp(unit->name, "logger.svc") == 0 ||104 str_cmp(unit->name, "irc.svc") == 0) {105 async_usleep(100000);106 unit->state = STATE_STARTED;107 }108 109 /*110 98 * Workaround to see log output even after devman starts (and overrides 111 99 * kernel's frame buffer. 100 * TODO move to task retval/exposee created handler 112 101 */ 113 102 if (str_cmp(unit->name, "devman.svc") == 0) { … … 128 117 assert(unit->state == STATE_STOPPED || unit->state == STATE_STARTING || unit->state==STATE_STARTED); 129 118 130 unit->state = STATE_STARTED; 131 unit_notify_state(unit); 119 /* Exposee itself doesn't represent started unit. */ 120 //unit->state = STATE_STARTED; 121 //unit_notify_state(unit); 132 122 } 133 123 -
uspace/srv/sysman/units/unit_svc.h
r012dd8e re8747bd8 30 30 #define SYSMAN_UNIT_SVC_H 31 31 32 #include <task.h> 33 32 34 #include "unit.h" 33 35 #include "util.h" … … 37 39 38 40 command_t exec_start; 41 42 task_id_t main_task_id; 39 43 } unit_svc_t; 40 44
Note:
See TracChangeset
for help on using the changeset viewer.