Changeset 3529f148 in mainline for uspace/lib/c/generic


Ignore:
Timestamp:
2020-03-06T19:14:20Z (6 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

Location:
uspace/lib/c/generic
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/devman.c

    r06599a1 r3529f148  
    286286}
    287287
    288 async_sess_t *devman_device_connect(devman_handle_t handle, unsigned int flags)
     288async_sess_t *devman_device_connect(devman_handle_t handle, ipc_start_flag_t flags)
    289289{
    290290        async_sess_t *sess;
     
    359359
    360360errno_t devman_fun_get_handle(const char *pathname, devman_handle_t *handle,
    361     unsigned int flags)
     361    ipc_start_flag_t flags)
    362362{
    363363        async_exch_t *exch;
  • uspace/lib/c/generic/loc.c

    r06599a1 r3529f148  
    454454
    455455errno_t loc_namespace_get_id(const char *name, service_id_t *handle,
    456     unsigned int flags)
     456    ipc_start_flag_t flags)
    457457{
    458458        async_exch_t *exch;
     
    503503 */
    504504errno_t loc_category_get_id(const char *name, category_id_t *cat_id,
    505     unsigned int flags)
     505    ipc_start_flag_t flags)
    506506{
    507507        async_exch_t *exch;
     
    558558
    559559async_sess_t *loc_service_connect(service_id_t handle, iface_t iface,
    560     unsigned int flags)
     560    ipc_start_flag_t flags)
    561561{
    562562        async_sess_t *sess;
  • uspace/lib/c/generic/task.c

    r06599a1 r3529f148  
    417417 * @return EOK on success, else error code.
    418418 */
    419 errno_t task_wait_task_id(task_id_t id, int flags, task_exit_t *texit, int *retval)
     419errno_t task_wait_task_id(task_id_t id, task_wait_flag_t flags, task_exit_t *texit, int *retval)
    420420{
    421421        task_wait_t wait;
Note: See TracChangeset for help on using the changeset viewer.