|
GDB (xrefs)
|
Go to the source code of this file.
Macros | |
| #define | QUEUE_enque(TYPE, Q, V) queue_ ## TYPE ## _enque ((Q), (V)) |
| #define | QUEUE_deque(TYPE, Q) queue_ ## TYPE ## _deque (Q) |
| #define | QUEUE_peek(TYPE, Q) queue_ ## TYPE ## _peek (Q) |
| #define | QUEUE_is_empty(TYPE, Q) queue_ ## TYPE ## _is_empty (Q) |
| #define | QUEUE_alloc(TYPE, FREE_FUNC) queue_ ## TYPE ## _alloc (FREE_FUNC) |
| #define | QUEUE_length(TYPE, Q) queue_ ## TYPE ## _length (Q) |
| #define | QUEUE_free(TYPE, Q) queue_ ## TYPE ## _free (Q) |
| #define | QUEUE_iterate(TYPE, Q, OPERATE, PARAM) queue_ ## TYPE ## _iterate ((Q), (OPERATE), (PARAM)) |
| #define | QUEUE_remove_elem(TYPE, Q, ITER) queue_ ## TYPE ## _remove_elem ((Q), (ITER)) |
| #define | QUEUE(TYPE) struct queue_ ## TYPE |
| #define | QUEUE_ELEM(TYPE) struct queue_elem_ ## TYPE |
| #define | QUEUE_ITER(TYPE) struct queue_iter_ ## TYPE |
| #define | QUEUE_ITER_FUNC(TYPE) queue_ ## TYPE ## _operate_func |
| #define | DEFINE_QUEUE_P(TYPE) |
| #define | DECLARE_QUEUE_P(TYPE) |
| #define DECLARE_QUEUE_P | ( | TYPE | ) |
| #define QUEUE_alloc | ( | TYPE, | |
| FREE_FUNC | |||
| ) | queue_ ## TYPE ## _alloc (FREE_FUNC) |
Definition at line 70 of file queue.h.
Referenced by _initialize_remote(), and remote_notif_state_allocate().
| #define QUEUE_deque | ( | TYPE, | |
| Q | |||
| ) | queue_ ## TYPE ## _deque (Q) |
Definition at line 59 of file queue.h.
Referenced by remote_notif_process().
| #define QUEUE_enque | ( | TYPE, | |
| Q, | |||
| V | |||
| ) | queue_ ## TYPE ## _enque ((Q), (V)) |
Definition at line 55 of file queue.h.
Referenced by handle_notification(), and push_stop_reply().
| #define QUEUE_free | ( | TYPE, | |
| Q | |||
| ) | queue_ ## TYPE ## _free (Q) |
Definition at line 76 of file queue.h.
Referenced by remote_notif_state_xfree().
| #define QUEUE_is_empty | ( | TYPE, | |
| Q | |||
| ) | queue_ ## TYPE ## _is_empty (Q) |
Definition at line 66 of file queue.h.
Referenced by queued_stop_reply(), remote_async(), remote_notif_process(), and remote_wait().
| #define QUEUE_ITER_FUNC | ( | TYPE | ) | queue_ ## TYPE ## _operate_func |
| #define QUEUE_iterate | ( | TYPE, | |
| Q, | |||
| OPERATE, | |||
| PARAM | |||
| ) | queue_ ## TYPE ## _iterate ((Q), (OPERATE), (PARAM)) |
Definition at line 83 of file queue.h.
Referenced by check_pending_events_prevent_wildcard_vcont(), discard_pending_stop_replies(), discard_pending_stop_replies_in_queue(), kill_new_fork_children(), peek_stop_reply(), remote_notif_remove_queued_reply(), and remove_new_fork_children().
| #define QUEUE_length | ( | TYPE, | |
| Q | |||
| ) | queue_ ## TYPE ## _length (Q) |
Definition at line 73 of file queue.h.
Referenced by push_stop_reply(), and stop_reply_queue_length().
| #define QUEUE_remove_elem | ( | TYPE, | |
| Q, | |||
| ITER | |||
| ) | queue_ ## TYPE ## _remove_elem ((Q), (ITER)) |
Definition at line 88 of file queue.h.
Referenced by remote_notif_remove_once_on_match(), remove_stop_reply_for_inferior(), and remove_stop_reply_of_remote_state().
1.8.14