Changeset 01e68af in mainline
- Timestamp:
- 2019-08-17T13:43:48Z (5 years ago)
- Children:
- 95d4280a
- Parents:
- 24b30e1
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-12-04 14:31:40)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-17 13:43:48)
- Location:
- uspace
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/sysman/src/sysman.c
r24b30e1 r01e68af 35 35 async_exch_t *sysman_exchange_begin(sysman_interface_t iface) 36 36 { 37 // TODO need special session for each iface!38 37 if (sysman_sess[iface] == NULL) { 39 38 // TODO serialize vs parallel -
uspace/srv/sysman/connection_broker.c
r24b30e1 r01e68af 40 40 sysman_log(LVL_DEBUG2, "%s", __func__); 41 41 async_answer_0(iid, EOK); 42 /* TODO implement43 * What exactly ? Similar behavior that has locsrv with servers,44 * s o that subsequent calls can be assigned to broker. Still that45 * makes sense only when brokers will somehow scope unit/exposee42 /* 43 * What exactly do here? Similar behavior that has locsrv with 44 * servers, so that subsequent calls can be assigned to broker. Still 45 * that makes sense only when brokers will somehow scope unit/exposee 46 46 * names. Why I wanted this registration? 47 47 */ -
uspace/srv/sysman/job.c
r24b30e1 r01e68af 217 217 break; 218 218 default: 219 // TODO implement other states?220 219 assert(false); 221 220 } -
uspace/srv/sysman/job_queue.c
r24b30e1 r01e68af 261 261 * be queued after this job_queue_process call. 262 262 * 263 * TODO Write down rules from where this function can be called, to avoid stack264 * overflow.265 263 */ 266 264 void job_queue_process(void) -
uspace/srv/sysman/unit.c
r24b30e1 r01e68af 98 98 UNIT_VMT(unit)->destroy(unit); 99 99 /* TODO: 100 * edges, 101 * check it's not an active unit, 102 * other resources to come 100 * edges 103 101 */ 104 102 free(unit->name); -
uspace/srv/sysman/units/unit_mnt.c
r24b30e1 r01e68af 196 196 197 197 198 // TODO think about unit's lifecycle (is STOPPED only acceptable?)199 198 assert(unit->state == STATE_STOPPED); 200 199 … … 237 236 238 237 239 // TODO think about unit's lifecycle (is STOPPED only acceptable?)240 238 // note: we should never hit STATE_STARTING, since it'd mean there are 241 239 // two jobs running at once (unless job cancellation is implemented) -
uspace/srv/sysman/units/unit_svc.c
r24b30e1 r01e68af 82 82 83 83 84 // TODO think about unit's lifecycle (is STOPPED only acceptable?)85 84 assert(unit->state == STATE_STOPPED); 86 85 … … 118 117 119 118 120 // TODO think about unit's lifecycle (is STOPPED only acceptable?)121 119 // note: May change when job cancellation is possible. 122 120 assert(unit->state == STATE_STARTED); -
uspace/srv/sysman/units/unit_tgt.c
r24b30e1 r01e68af 80 80 static void unit_tgt_fail(unit_t *unit) 81 81 { 82 // TODO define semantics and implement83 82 } 84 83
Note:
See TracChangeset
for help on using the changeset viewer.