Changeset 3529f148 in mainline for uspace/srv/sysman/connection_ctl.c


Ignore:
Timestamp:
2020-03-06T19:14:20Z (5 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/srv/sysman/connection_ctl.c

    r06599a1 r3529f148  
    104104        }
    105105
    106         int flags = ipc_get_arg1(icall);
     106        ipc_start_flag_t flags = ipc_get_arg1(icall);
    107107        sysman_log(LVL_DEBUG2, "%s(%s, %x)", __func__, unit_name, flags);
    108108
     
    144144
    145145        unit_handle_t handle = ipc_get_arg1(icall);
    146         sysarg_t flags = ipc_get_arg2(icall);
    147         sysman_log(LVL_DEBUG2, "%s(%p, %" SCNuPTR ", %i)", __func__, icall->cap_handle, flags, state);
     146        ipc_start_flag_t flags = ipc_get_arg2(icall);
     147        sysman_log(LVL_DEBUG2, "%s(%p, %u, %i)", __func__, icall->cap_handle, flags, state);
    148148
    149149        unit_t *unit = repo_find_unit_by_handle(handle);
Note: See TracChangeset for help on using the changeset viewer.