1 /* pq.h - priority queue header */
3 /* Copyright (C) 2007 Keith Rarick and Philotic Inc.
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 typedef struct pq
*pq
;
33 /* initialize a priority queue */
34 void pq_init(pq q
, job_cmp_fn cmp
);
38 /* return 1 if the job was inserted, else 0 */
39 int pq_give(pq q
, job j
);
41 /* return a job if the queue contains jobs, else NULL */
44 /* return a job if the queue contains jobs, else NULL */
47 /* return a job that matches the given id, else NULL */
48 /* This is O(n), so don't do it much. */
49 job
pq_find(pq q
, unsigned long long int id
);
51 unsigned int pq_used(pq q
);