Changeset 3529f148 in mainline for uspace/lib/sysman/src/ctl.c


Ignore:
Timestamp:
2020-03-06T19:14:20Z (4 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
13b4504
Parents:
06599a1
git-author:
Matthieu Riolo <matthieu.riolo@…> (2020-02-29 11:22:13)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2020-03-06 19:14:20)
Message:

Adding types task_wait_flag_t and ipc_start_flag_t which replaces makros

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/sysman/src/ctl.c

    r06599a1 r3529f148  
    6464 * TODO convert to name->handle API
    6565 */
    66 errno_t sysman_unit_start_by_name(const char *unit_name, int flags)
     66errno_t sysman_unit_start_by_name(const char *unit_name, ipc_start_flag_t flags)
    6767{
    6868        async_exch_t *exch = sysman_exchange_begin(SYSMAN_PORT_CTL);
     
    8181}
    8282
    83 errno_t sysman_unit_start(unit_handle_t handle, int flags)
     83errno_t sysman_unit_start(unit_handle_t handle, ipc_start_flag_t flags)
    8484{
    8585        async_exch_t *exch = sysman_exchange_begin(SYSMAN_PORT_CTL);
     
    9191}
    9292
    93 errno_t sysman_unit_stop(unit_handle_t handle, int flags)
     93errno_t sysman_unit_stop(unit_handle_t handle, ipc_start_flag_t flags)
    9494{
    9595        async_exch_t *exch = sysman_exchange_begin(SYSMAN_PORT_CTL);
Note: See TracChangeset for help on using the changeset viewer.