Changeset 3529f148 in mainline
- Timestamp:
- 2020-03-06T19:14:20Z (5 years ago)
- 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)
- Location:
- uspace
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/proc/task_anywait.c
r06599a1 r3529f148 39 39 static task_id_t task_id; 40 40 static task_exit_t last_texit; 41 static int last_flags;41 static task_wait_flag_t last_flags; 42 42 static int last_retval; 43 43 static bool handler_hit; … … 49 49 static FIBRIL_CONDVAR_INITIALIZE(sync_cv); 50 50 51 static void task_event_handler(task_id_t tid, int flags, task_exit_t texit,51 static void task_event_handler(task_id_t tid, task_wait_flag_t flags, task_exit_t texit, 52 52 int retval) 53 53 { -
uspace/lib/c/generic/devman.c
r06599a1 r3529f148 286 286 } 287 287 288 async_sess_t *devman_device_connect(devman_handle_t handle, unsigned int flags)288 async_sess_t *devman_device_connect(devman_handle_t handle, ipc_start_flag_t flags) 289 289 { 290 290 async_sess_t *sess; … … 359 359 360 360 errno_t devman_fun_get_handle(const char *pathname, devman_handle_t *handle, 361 unsigned int flags)361 ipc_start_flag_t flags) 362 362 { 363 363 async_exch_t *exch; -
uspace/lib/c/generic/loc.c
r06599a1 r3529f148 454 454 455 455 errno_t loc_namespace_get_id(const char *name, service_id_t *handle, 456 unsigned int flags)456 ipc_start_flag_t flags) 457 457 { 458 458 async_exch_t *exch; … … 503 503 */ 504 504 errno_t loc_category_get_id(const char *name, category_id_t *cat_id, 505 unsigned int flags)505 ipc_start_flag_t flags) 506 506 { 507 507 async_exch_t *exch; … … 558 558 559 559 async_sess_t *loc_service_connect(service_id_t handle, iface_t iface, 560 unsigned int flags)560 ipc_start_flag_t flags) 561 561 { 562 562 async_sess_t *sess; -
uspace/lib/c/generic/task.c
r06599a1 r3529f148 417 417 * @return EOK on success, else error code. 418 418 */ 419 errno_t task_wait_task_id(task_id_t id, int flags, task_exit_t *texit, int *retval)419 errno_t task_wait_task_id(task_id_t id, task_wait_flag_t flags, task_exit_t *texit, int *retval) 420 420 { 421 421 task_wait_t wait; -
uspace/lib/c/include/devman.h
r06599a1 r3529f148 53 53 extern errno_t devman_drv_fun_offline(devman_handle_t); 54 54 55 extern async_sess_t *devman_device_connect(devman_handle_t, unsigned int);55 extern async_sess_t *devman_device_connect(devman_handle_t, ipc_start_flag_t); 56 56 extern async_sess_t *devman_parent_device_connect(devman_handle_t, 57 57 unsigned int); 58 58 59 59 extern errno_t devman_fun_get_handle(const char *, devman_handle_t *, 60 unsigned int);60 ipc_start_flag_t); 61 61 extern errno_t devman_fun_get_child(devman_handle_t, devman_handle_t *); 62 62 extern errno_t devman_dev_get_parent(devman_handle_t, devman_handle_t *); -
uspace/lib/c/include/ipc/common.h
r06599a1 r3529f148 41 41 /* Well known phone descriptors */ 42 42 static cap_phone_handle_t const PHONE_INITIAL = (cap_phone_handle_t) (CAP_NIL + 1); 43 #define IPC_FLAG_BLOCKING 0x0144 43 45 /** 46 * IPC_FLAG_AUTOSTART_ is for use in brokers only. In client code use 47 * IPC_AUTOSTART that includes implies blocking behavior. 48 */ 49 #define IPC_FLAG_AUTOSTART_ 0x02 44 typedef enum { 45 /** 46 * IPC_FLAG_AUTOSTART_ is for use in brokers only. In client code use 47 * IPC_AUTOSTART that includes implies blocking behavior. 48 */ 49 IPC_FLAG_BLOCKING = 0x01, 50 IPC_FLAG_AUTOSTART_ = 0x02, 50 51 51 /** 52 * Similar to blocking IPC_FLAG_BLOCKING behavior, broker will attempt to 53 * start the server. 54 */ 55 #define IPC_AUTOSTART (IPC_FLAG_BLOCKING | IPC_FLAG_AUTOSTART_) 52 /** 53 * Similar to blocking IPC_FLAG_BLOCKING behavior, broker will attempt to 54 * start the server. 55 */ 56 IPC_AUTOSTART = (IPC_FLAG_BLOCKING | IPC_FLAG_AUTOSTART_), 57 } ipc_start_flag_t; 56 58 57 59 typedef ipc_data_t ipc_call_t; -
uspace/lib/c/include/loc.h
r06599a1 r3529f148 52 52 53 53 extern errno_t loc_service_get_id(const char *, service_id_t *, 54 unsigned int);54 ipc_start_flag_t); 55 55 extern errno_t loc_service_get_name(service_id_t, char **); 56 56 extern errno_t loc_service_get_server_name(service_id_t, char **); 57 57 extern errno_t loc_namespace_get_id(const char *, service_id_t *, 58 unsigned int);58 ipc_start_flag_t); 59 59 extern errno_t loc_category_get_id(const char *, category_id_t *, 60 unsigned int);60 ipc_start_flag_t); 61 61 extern errno_t loc_category_get_name(category_id_t, char **); 62 62 extern errno_t loc_category_get_svcs(category_id_t, category_id_t **, size_t *); … … 64 64 65 65 extern async_sess_t *loc_service_connect(service_id_t, iface_t, 66 unsigned int);66 ipc_start_flag_t); 67 67 68 68 extern int loc_null_create(void); -
uspace/lib/c/include/task.h
r06599a1 r3529f148 41 41 #include <types/task.h> 42 42 43 #define TASK_WAIT_EXIT 0x1 44 #define TASK_WAIT_RETVAL 0x2 45 #define TASK_WAIT_BOTH 0x4 46 47 static inline void task_wait_set(task_wait_t *wait, int flags) 43 static inline void task_wait_set(task_wait_t *wait, task_wait_flag_t flags) 48 44 { 49 45 wait->flags = flags; … … 70 66 extern void task_cancel_wait(task_wait_t *); 71 67 extern errno_t task_wait(task_wait_t *, task_exit_t *, int *); 72 extern errno_t task_wait_task_id(task_id_t, int, task_exit_t *, int *);68 extern errno_t task_wait_task_id(task_id_t, task_wait_flag_t, task_exit_t *, int *); 73 69 74 70 extern errno_t task_retval(int); -
uspace/lib/c/include/types/task.h
r06599a1 r3529f148 39 39 40 40 typedef enum { 41 TASK_WAIT_NONE = 0x0, 42 TASK_WAIT_EXIT = 0x1, 43 TASK_WAIT_RETVAL = 0x2, 44 TASK_WAIT_BOTH = 0x4 45 } task_wait_flag_t; 46 47 typedef enum { 41 48 TASK_EXIT_RUNNING, /**< Internal taskman value. */ 42 49 TASK_EXIT_NORMAL, … … 45 52 46 53 typedef struct { 47 int flags;54 task_wait_flag_t flags; 48 55 ipc_call_t result; 49 56 aid_t aid; … … 51 58 } task_wait_t; 52 59 53 typedef void (*task_event_handler_t)(task_id_t, int, task_exit_t, int);60 typedef void (*task_event_handler_t)(task_id_t, task_wait_flag_t, task_exit_t, int); 54 61 55 62 #endif -
uspace/lib/gui/window.c
r06599a1 r3529f148 616 616 win->surface = NULL; 617 617 618 unsigned int ipc_flags = IPC_AUTOSTART;618 ipc_start_flag_t ipc_flags = IPC_AUTOSTART; 619 619 service_id_t reg_dsid; 620 620 errno_t rc = loc_service_get_id(winreg, ®_dsid, ipc_flags); -
uspace/lib/posix/src/sys/wait.c
r06599a1 r3529f148 101 101 assert(options == 0 /* None of the options are supported. */); 102 102 103 int flags = TASK_WAIT_RETVAL | TASK_WAIT_EXIT;103 task_wait_flag_t flags = TASK_WAIT_RETVAL | TASK_WAIT_EXIT; 104 104 task_exit_t texit; 105 105 int retval; -
uspace/lib/sysman/include/sysman/ctl.h
r06599a1 r3529f148 35 35 errno_t sysman_unit_handle(const char *, unit_handle_t *); 36 36 37 errno_t sysman_unit_start_by_name(const char *, i nt);38 errno_t sysman_unit_start(unit_handle_t, i nt);39 errno_t sysman_unit_stop(unit_handle_t, i nt);37 errno_t sysman_unit_start_by_name(const char *, ipc_start_flag_t); 38 errno_t sysman_unit_start(unit_handle_t, ipc_start_flag_t); 39 errno_t sysman_unit_stop(unit_handle_t, ipc_start_flag_t); 40 40 41 41 errno_t sysman_get_units(unit_handle_t **, size_t *); -
uspace/lib/sysman/src/ctl.c
r06599a1 r3529f148 64 64 * TODO convert to name->handle API 65 65 */ 66 errno_t sysman_unit_start_by_name(const char *unit_name, i nt flags)66 errno_t sysman_unit_start_by_name(const char *unit_name, ipc_start_flag_t flags) 67 67 { 68 68 async_exch_t *exch = sysman_exchange_begin(SYSMAN_PORT_CTL); … … 81 81 } 82 82 83 errno_t sysman_unit_start(unit_handle_t handle, i nt flags)83 errno_t sysman_unit_start(unit_handle_t handle, ipc_start_flag_t flags) 84 84 { 85 85 async_exch_t *exch = sysman_exchange_begin(SYSMAN_PORT_CTL); … … 91 91 } 92 92 93 errno_t sysman_unit_stop(unit_handle_t handle, i nt flags)93 errno_t sysman_unit_stop(unit_handle_t handle, ipc_start_flag_t flags) 94 94 { 95 95 async_exch_t *exch = sysman_exchange_begin(SYSMAN_PORT_CTL); -
uspace/srv/sysman/connection_ctl.c
r06599a1 r3529f148 104 104 } 105 105 106 i nt flags = ipc_get_arg1(icall);106 ipc_start_flag_t flags = ipc_get_arg1(icall); 107 107 sysman_log(LVL_DEBUG2, "%s(%s, %x)", __func__, unit_name, flags); 108 108 … … 144 144 145 145 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); 148 148 149 149 unit_t *unit = repo_find_unit_by_handle(handle); -
uspace/srv/sysman/sm_task.c
r06599a1 r3529f148 41 41 struct sm_task_event { 42 42 task_id_t task_id; 43 int flags;43 task_wait_flag_t flags; 44 44 task_exit_t texit; 45 45 int retval; … … 51 51 * @note This function runs in separate fibril (not same as event loop). 52 52 */ 53 static void sm_task_event_handler(task_id_t tid, int flags, task_exit_t texit,53 static void sm_task_event_handler(task_id_t tid, task_wait_flag_t flags, task_exit_t texit, 54 54 int retval) 55 55 { -
uspace/srv/sysman/units/unit_mnt.c
r06599a1 r3529f148 54 54 char *device; 55 55 char *options; 56 unsigned int flags;56 ipc_start_flag_t flags; 57 57 unsigned int instance; 58 58 … … 208 208 */ 209 209 210 mnt_data.flags |= u_mnt->blocking ? IPC_FLAG_BLOCKING: 0;211 mnt_data.flags |= u_mnt->autostart ? IPC_AUTOSTART: 0;210 mnt_data.flags |= u_mnt->blocking ? true : 0; 211 mnt_data.flags |= u_mnt->autostart ? true : 0; 212 212 mnt_data.unit = unit; 213 213 -
uspace/srv/taskman/event.c
r06599a1 r3529f148 50 50 task_id_t waiter_id; /**< Task ID who waits. */ 51 51 ipc_call_t *icall; /**< Call ID waiting for the event. */ 52 int flags;/**< Wait flags. */52 task_wait_flag_t flags; /**< Wait flags. */ 53 53 } pending_wait_t; 54 54 … … 67 67 } 68 68 69 static int event_flags(task_t *task)70 { 71 int flags = 0;69 static task_wait_flag_t event_flags(task_t *task) 70 { 71 task_wait_flag_t flags = TASK_WAIT_NONE; 72 72 if (task->retval_type == RVAL_SET) { 73 73 flags |= TASK_WAIT_RETVAL; … … 88 88 static void event_notify(task_t *sender, async_sess_t *sess) 89 89 { 90 int flags = event_flags(sender);91 if (flags == 0) {90 task_wait_flag_t flags = event_flags(sender); 91 if (flags == TASK_WAIT_NONE) { 92 92 return; 93 93 } … … 114 114 static void event_notify_all(task_t *sender) 115 115 { 116 int flags = event_flags(sender);117 if (flags == 0) {116 task_wait_flag_t flags = event_flags(sender); 117 if (flags == TASK_WAIT_NONE) { 118 118 return; 119 119 } … … 140 140 continue; // TODO really when does this happen? 141 141 } 142 int notify_flags = event_flags(t);142 task_wait_flag_t notify_flags = event_flags(t); 143 143 144 144 /* … … 146 146 * thus it can be never present in rest flags. 147 147 */ 148 int rest = (~notify_flags & pr->flags) & ~TASK_WAIT_RETVAL;148 task_wait_flag_t rest = (~notify_flags & pr->flags) & ~TASK_WAIT_RETVAL; 149 149 rest &= ~TASK_WAIT_BOTH; 150 intmatch = notify_flags & pr->flags;150 bool match = notify_flags & pr->flags; 151 151 // TODO why do I even accept such calls? 152 152 bool answer = !(pr->icall->flags & IPC_CALL_NOTIF); … … 233 233 } 234 234 235 void wait_for_task(task_id_t id, int flags, ipc_call_t *icall,235 void wait_for_task(task_id_t id, task_wait_flag_t flags, ipc_call_t *icall, 236 236 task_id_t waiter_id) 237 237 { -
uspace/srv/taskman/event.h
r06599a1 r3529f148 44 44 ipc_call_t *); 45 45 extern void dump_events(task_id_t, ipc_call_t *); 46 extern void wait_for_task(task_id_t, int, ipc_call_t *, task_id_t);46 extern void wait_for_task(task_id_t, task_wait_flag_t, ipc_call_t *, task_id_t); 47 47 extern errno_t task_set_retval(task_id_t, int, bool); 48 48 -
uspace/srv/taskman/main.c
r06599a1 r3529f148 97 97 98 98 /* After forward we can dispose all session-related resources */ 99 async_hangup(sess_ref->sess);99 //async_hangup(sess_ref->sess); 100 100 free(sess_ref); 101 101
Note:
See TracChangeset
for help on using the changeset viewer.