Changeset 102f641 in mainline for uspace/lib/sysman/src
- Timestamp:
- 2019-09-02T19:01:50Z (6 years ago)
- Children:
- 25697163
- Parents:
- 241f1985
- Location:
- uspace/lib/sysman/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/sysman/src/broker.c
r241f1985 r102f641 86 86 async_forget(req); 87 87 } 88 89 -
uspace/lib/sysman/src/ctl.c
r241f1985 r102f641 87 87 errno_t rc = async_req_2_0(exch, SYSMAN_CTL_UNIT_START, handle, flags); 88 88 sysman_exchange_end(exch); 89 89 90 90 return rc; 91 91 } … … 97 97 errno_t rc = async_req_2_0(exch, SYSMAN_CTL_UNIT_STOP, handle, flags); 98 98 sysman_exchange_end(exch); 99 99 100 100 return rc; 101 101 } -
uspace/lib/sysman/src/sysman.c
r241f1985 r102f641 31 31 #include <sysman/sysman.h> 32 32 33 static async_sess_t *sysman_sess[SYSMAN_PORT_MAX_] = { NULL};33 static async_sess_t *sysman_sess[SYSMAN_PORT_MAX_] = { NULL }; 34 34 35 35 async_exch_t *sysman_exchange_begin(sysman_interface_t iface) … … 51 51 async_exchange_end(exch); 52 52 } 53
Note:
See TracChangeset
for help on using the changeset viewer.