Home
last modified time | relevance | path

Searched full:queue (Results 1 – 25 of 4253) sorted by relevance

12345678910>>...171

/netbsd-src/external/ibm-public/postfix/dist/src/oqmgr/
H A Dqmgr_queue.c18 /* void qmgr_queue_done(queue)
19 /* QMGR_QUEUE *queue;
28 /* void qmgr_queue_throttle(queue, dsn)
29 /* QMGR_QUEUE *queue;
32 /* void qmgr_queue_unthrottle(queue)
33 /* QMGR_QUEUE *queue;
35 /* void qmgr_queue_suspend(queue, delay)
36 /* QMGR_QUEUE *queue;
40 /* Each queue corresponds to a specific transport and destination.
41 /* Each queue has a `todo' list of delivery requests for that
[all …]
H A Dqmgr_entry.c7 /* per-site queue entries
11 /* QMGR_ENTRY *qmgr_entry_create(queue, message)
12 /* QMGR_QUEUE *queue;
19 /* QMGR_ENTRY *qmgr_entry_select(queue)
20 /* QMGR_QUEUE *queue;
22 /* void qmgr_entry_unselect(queue, entry)
23 /* QMGR_QUEUE *queue;
33 /* qmgr_entry_create() creates an entry for the named queue and
34 /* message, and appends the entry to the queue's todo list.
38 /* qmgr_entry_done() discards a per-site queue entry. The
[all …]
H A Dqmgr_scan.c7 /* queue scanning
21 /* This module implements queue scans. A queue scan always runs
23 /* can request that a queue scan be restarted once it completes.
25 /* qmgr_scan_create() creates a context for scanning the named queue,
26 /* but does not start a queue scan.
28 /* qmgr_scan_next() returns the base name of the next queue file.
30 /* automagically restarts a queue scan when a scan request had
33 /* qmgr_scan_request() records a request for the next queue scan. The
41 /* immediately when a queue scan is in progress, and affects
42 /* the next queue scan.
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/qmgr/
H A Dqmgr_queue.c18 /* void qmgr_queue_done(queue)
19 /* QMGR_QUEUE *queue;
25 /* void qmgr_queue_throttle(queue, dsn)
26 /* QMGR_QUEUE *queue;
29 /* void qmgr_queue_unthrottle(queue)
30 /* QMGR_QUEUE *queue;
32 /* void qmgr_queue_suspend(queue, delay)
33 /* QMGR_QUEUE *queue;
37 /* Each queue corresponds to a specific transport and destination.
38 /* Each queue has a `todo' list of delivery requests for that
[all …]
H A Dqmgr_entry.c7 /* per-site queue entries
19 /* QMGR_ENTRY *qmgr_entry_select(queue)
20 /* QMGR_QUEUE *queue;
22 /* void qmgr_entry_unselect(queue, entry)
23 /* QMGR_QUEUE *queue;
34 /* and appends the entry to the peer's list and its queue's todo list.
38 /* qmgr_entry_done() discards a per-site queue entry. The
40 /* of the site's `busy' list (i.e. queue entries that have been
42 /* of the site's `todo' list (i.e. queue entries awaiting selection
48 /* qmgr_entry_done() triggers cleanup of the per-site queue when
[all …]
H A Dqmgr_peer.c11 /* QMGR_PEER *qmgr_peer_create(job, queue)
13 /* QMGR_QUEUE *queue;
15 /* QMGR_PEER *qmgr_peer_find(job, queue)
17 /* QMGR_QUEUE *queue;
19 /* QMGR_PEER *qmgr_peer_obtain(job, queue)
21 /* QMGR_QUEUE *queue;
32 /* It is similar to per-transport queue structure, but groups
80 QMGR_PEER *qmgr_peer_create(QMGR_JOB *job, QMGR_QUEUE *queue) in qmgr_peer_create() argument
85 peer->queue = queue; in qmgr_peer_create()
88 htable_enter(job->peer_byname, queue->name, (void *) peer); in qmgr_peer_create()
[all …]
H A Dqmgr_scan.c7 /* queue scanning
21 /* This module implements queue scans. A queue scan always runs
23 /* can request that a queue scan be restarted once it completes.
25 /* qmgr_scan_create() creates a context for scanning the named queue,
26 /* but does not start a queue scan.
28 /* qmgr_scan_next() returns the base name of the next queue file.
30 /* automagically restarts a queue scan when a scan request had
33 /* qmgr_scan_request() records a request for the next queue scan. The
41 /* immediately when a queue scan is in progress, and affects
42 /* the next queue scan.
[all …]
/netbsd-src/share/man/man3/
H A DMakefile13 makedev.3 offsetof.3 param.3 paths.3 queue.3 rbtree.3 sigevent.3 \
19 USETBL= # used by queue.3
142 MLINKS+=queue.3 LIST.3 \
143 queue.3 LIST_EMPTY.3 \
144 queue.3 LIST_ENTRY.3 \
145 queue.3 LIST_FIRST.3 \
146 queue.3 LIST_FOREACH.3 \
147 queue.3 LIST_FOREACH_SAFE.3 \
148 queue.3 LIST_HEAD.3 \
149 queue
[all...]
/netbsd-src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/
H A Dvchiq_util.c41 int vchiu_queue_init(VCHIU_QUEUE_T *queue, int size) in vchiu_queue_init() argument
45 queue->size = size; in vchiu_queue_init()
46 queue->read = 0; in vchiu_queue_init()
47 queue->write = 0; in vchiu_queue_init()
48 queue->initialized = 1; in vchiu_queue_init()
50 _sema_init(&queue->pop, 0); in vchiu_queue_init()
51 _sema_init(&queue->push, 0); in vchiu_queue_init()
53 queue->storage = kzalloc(size * sizeof(VCHIQ_HEADER_T *), GFP_KERNEL); in vchiu_queue_init()
54 if (queue->storage == NULL) { in vchiu_queue_init()
55 vchiu_queue_delete(queue); in vchiu_queue_init()
[all …]
/netbsd-src/sys/altq/
H A Daltq_wfq.c87 /* global value : pointer to wfq queue list */
117 wfq *queue; in wfq_ifattach() local
138 queue = malloc(sizeof(wfq) * DEFAULT_QSIZE, M_DEVBUF, M_WAITOK|M_ZERO); in wfq_ifattach()
139 if (queue == NULL) { in wfq_ifattach()
150 new_wfqp->queue = queue; in wfq_ifattach()
154 for (i = 0; i < new_wfqp->nums; i++, queue++) { in wfq_ifattach()
155 queue->next = queue->prev = NULL; in wfq_ifattach()
156 queue in wfq_ifattach()
254 wfq *queue; wfq_ifenqueue() local
418 wfq *queue, *max_queue = NULL; wfq_maxqueue() local
438 wfq *queue; wfq_ifdequeue() local
517 wfq *queue; wfq_setweight() local
541 wfq *queue; wfq_getstats() local
566 wfq *queue; wfq_config() local
[all...]
/netbsd-src/lib/librt/
H A Dmq_open.310 .Nd open a message queue (REALTIME)
22 function establishes the connection between a process and a message queue
23 with a message queue descriptor.
24 It creates an open message queue description that refers to the message
25 queue, and a message queue descriptor that refers to that open message
26 queue description.
27 The message queue descriptor is used by other functions to refer to that
28 message queue.
31 argument points to a string naming a message queue,
40 will refer to the same message queue object,
[all …]
H A Dmq_send.310 .Nd send a message to a message queue (REALTIME)
37 to the message queue specified by
47 attribute of the message queue, or
51 If the specified message queue is not full,
53 behaves as if the message is inserted into the message queue at the
61 A message will be inserted after other messages in the queue,
69 If the specified message queue is full and
71 is not set in the message queue description associated with
78 in the message queue, then the thread of the highest priority that has
80 If the specified message queue is full and
[all …]
/netbsd-src/external/ibm-public/postfix/dist/proto/
H A DQSHAPE_README.html23 <p> This document is an introduction to Postfix queue congestion analysis.
25 reason for queue congestion. qshape(1) is bundled with Postfix
37 <li><a href="#healthy">Example 1: Healthy queue</a>
39 <li><a href="#dictionary_bounce">Example 2: Deferred queue full of
43 queue</a></li>
47 <li><a href="#queues">Postfix queue directories</a>
51 <li> <a href="#maildrop_queue"> The "maildrop" queue </a>
53 <li> <a href="#hold_queue"> The "hold" queue </a>
55 <li> <a href="#incoming_queue"> The "incoming" queue </a>
57 <li> <a href="#active_queue"> The "active" queue </a>
[all …]
/netbsd-src/dist/pf/share/pf/
H A Dfaq-example310 # enable queueing on the external interface to queue packets going out
12 # each queue can be controlled. the max outgoing bandwidth is 1.5Mbps.
14 altq on fxp0 cbq bandwidth 1.5Mb queue { std_ext, www_ext, boss_ext }
17 # std_ext - the standard queue. also the default queue for
19 # www_ext - container queue for WWW server queues. limit to
25 queue std_ext bandwidth 500Kb cbq(default borrow)
26 queue www_ext bandwidth 500Kb { www_ext_http, www_ext_misc }
27 queue www_ext_http bandwidth 50% priority 3 cbq(red borrow)
28 queue www_ext_misc bandwidth 50% priority 1 cbq(borrow)
29 queue boss_ext bandwidth 500Kb priority 3 cbq(borrow)
[all …]
H A Dfaq-example213 # ACK queue.
15 altq on fxp0 priq bandwidth 610Kb queue { std_out, ssh_im_out, dns_out, \
19 # std_out - the standard queue. any filter rule below that does not
20 # explicitly specify a queue will have its traffic added
21 # to this queue.
26 queue std_out priq(default)
27 queue ssh_im_out priority 4 priq(red)
28 queue dns_out priority 5
29 queue tcp_ack_out priority 6
35 altq on dc0 cbq bandwidth 2Mb queue { std_in, ssh_im_in, dns_in, bob_in }
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/vmwgfx/
H A Dvmwgfx_marker.c42 void vmw_marker_queue_init(struct vmw_marker_queue *queue) in vmw_marker_queue_init() argument
44 INIT_LIST_HEAD(&queue->head); in vmw_marker_queue_init()
45 queue->lag = 0; in vmw_marker_queue_init()
46 queue->lag_time = ktime_get_raw_ns(); in vmw_marker_queue_init()
47 spin_lock_init(&queue->lock); in vmw_marker_queue_init()
50 void vmw_marker_queue_takedown(struct vmw_marker_queue *queue) in vmw_marker_queue_takedown() argument
54 list_for_each_entry_safe(marker, next, &queue->head, head) { in vmw_marker_queue_takedown()
57 spin_lock_destroy(&queue->lock); in vmw_marker_queue_takedown()
60 int vmw_marker_push(struct vmw_marker_queue *queue, in vmw_marker_push() argument
70 spin_lock(&queue->lock); in vmw_marker_push()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/cleanup/
H A DMakefile.in149 # Test queue file editing routines.
151 cleanup_milter_test: cleanup_milter test-queue-file cleanup_milter.in1 \
153 cp test-queue-file test-queue-file.tmp
154 chmod u+w test-queue-file.tmp
156 $(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file.tmp 2>/dev/null >cleanup_milter.tmp
158 rm -f test-queue-file.tmp cleanup_milter.tmp
160 cleanup_milter_test2: cleanup_milter test-queue-file2 cleanup_milter.in2 \
162 cp test-queue-file2 test-queue-file2.tmp
163 chmod u+w test-queue-file2.tmp
165 …$(SHLIB_ENV) $(VALGRIND) ../postcat/postcat -ov test-queue-file2.tmp 2>/dev/null >cleanup_milter.t…
[all …]
/netbsd-src/external/ibm-public/postfix/dist/man/man1/
H A Dpostsuper.123 queue. Use of the command is restricted to the superuser.
24 See the \fBpostqueue\fR(1) command for unprivileged queue operations
25 such as listing or flushing the mail queue.
29 \fB\-s\fR and \fB\-p\fR command\-line options on all Postfix queue
41 Delete one message with the named queue ID from the named
42 mail queue(s) (default: \fBhold\fR, \fBincoming\fR, \fBactive\fR and
46 times, or specify a \fIqueue_id\fR of \fB\-\fR to read queue IDs
70 "\fB\-d ALL deferred\fR" to delete all mail in the \fBdeferred\fR queue.
74 Warning: Postfix queue IDs are reused (always with Postfix
83 The Postfix queue manager deletes the message that \fBpostsuper\fR(1)
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
H A Dkfd_queue.c37 pr_debug("Printing queue properties:\n"); in print_queue_properties()
38 pr_debug("Queue Type: %u\n", q->type); in print_queue_properties()
39 pr_debug("Queue Size: %llu\n", q->queue_size); in print_queue_properties()
40 pr_debug("Queue percent: %u\n", q->queue_percent); in print_queue_properties()
41 pr_debug("Queue Address: 0x%llX\n", q->queue_address); in print_queue_properties()
42 pr_debug("Queue Id: %u\n", q->queue_id); in print_queue_properties()
43 pr_debug("Queue Process Vmid: %u\n", q->vmid); in print_queue_properties()
44 pr_debug("Queue Read Pointer: 0x%px\n", q->read_ptr); in print_queue_properties()
45 pr_debug("Queue Write Pointer: 0x%px\n", q->write_ptr); in print_queue_properties()
46 pr_debug("Queue Doorbell Pointer: 0x%p\n", q->doorbell_ptr); in print_queue_properties()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/
H A Dmqueue.d6 * mq_open(3) open a message queue
7 * mq_close(3) close a message queue
8 * mq_unlink(3) remove a message queue
13 * mq_getattr(3) get message queue attributes
14 * mq_setattr(3) set message queue attributes
37 /// Message queue descriptor.
41 * Used in getting and setting the attributes of a message queue.
45 /// Message queue flags.
57 * Establish connection between a process and a message queue `name`.
65 * name = Name of the message queue to open.
[all …]
/netbsd-src/external/ibm-public/postfix/dist/man/man8/
H A Doqmgr.89 old Postfix queue manager
37 Messages that the queue manager has opened for delivery. Only
39 queue (leaky bucket strategy, for a fixed delivery rate).
41 Mail that could not be delivered upon the first attempt. The queue
45 Unreadable or damaged queue files are moved here for inspection.
76 The queue manager implements a variety of strategies for
77 either opening queue files (input) or for message delivery (output).
79 This strategy limits the number of messages in the \fBactive\fR queue
80 and prevents the queue manager from running out of memory under
83 When the \fBactive\fR queue has room, the queue manager takes one
[all …]
H A Dqmgr.89 Postfix queue manager
37 Messages that the queue manager has opened for delivery. Only
39 queue (leaky bucket strategy, for a fixed delivery rate).
41 Mail that could not be delivered upon the first attempt. The queue
45 Unreadable or damaged queue files are moved here for inspection.
76 The queue manager implements a variety of strategies for
77 either opening queue files (input) or for message delivery (output).
79 This strategy limits the number of messages in the \fBactive\fR queue
80 and prevents the queue manager from running out of memory under
83 When the \fBactive\fR queue has room, the queue manager takes one
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dqueue2 //===--------------------------- queue ------------------------------------===//
14 queue synopsis
20 class queue
33 queue() = default;
34 ~queue() = default;
36 queue(const queue& q) = default;
37 queue(queue&& q) = default;
39 queue& operator=(const queue& q) = default;
40 queue& operator=(queue&& q) = default;
42 explicit queue(const container_type& c);
[all …]
/netbsd-src/external/bsd/ntp/dist/ntpd/
H A Dntp_prio_q.c5 * This file contains the priority queue implementation used by the
20 /* Priority Queue
22 * Define a priority queue in which the relative priority of the elements
26 queue *debug_create_priority_queue( in debug_create_priority_queue()
34 queue *my_queue; in debug_create_priority_queue()
37 my_queue = emalloc(sizeof(queue)); in debug_create_priority_queue()
40 my_queue = debug_erealloc(NULL, sizeof(queue), sourcefile, line_num); in debug_create_priority_queue()
50 /* Define a function to "destroy" a priority queue, freeing-up
55 queue *my_queue in destroy_queue()
60 /* Empty out the queue elements if they are not already empty */ in destroy_queue()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/html/
H A DQSHAPE_README.html23 <p> This document is an introduction to Postfix queue congestion analysis.
25 reason for queue congestion. <a href="qshape.1.html">qshape(1)</a> is bundled with Postfix
37 <li><a href="#healthy">Example 1: Healthy queue</a>
39 <li><a href="#dictionary_bounce">Example 2: Deferred queue full of
43 queue</a></li>
47 <li><a href="#queues">Postfix queue directories</a>
51 <li> <a href="#maildrop_queue"> The "maildrop" queue </a>
53 <li> <a href="#hold_queue"> The "hold" queue </a>
55 <li> <a href="#incoming_queue"> The "incoming" queue </a>
57 <li> <a href="#active_queue"> The "active" queue </a>
[all …]

12345678910>>...171