mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00
Initial import of svn+ssh:://svn.icir.org/bro/trunk/bro as of r7088
This commit is contained in:
commit
61757ac78b
1383 changed files with 380824 additions and 0 deletions
14
src/cq.h
Normal file
14
src/cq.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
/* @(#) $Id: cq.h 80 2004-07-14 20:15:50Z jason $ (LBL) */
|
||||
|
||||
struct cq_handle *cq_init(double, double);
|
||||
void cq_destroy(struct cq_handle *);
|
||||
int cq_enqueue(struct cq_handle *, double, void *);
|
||||
void *cq_dequeue(struct cq_handle *, double);
|
||||
void *cq_remove(struct cq_handle *, double, void *);
|
||||
int cq_size(struct cq_handle *);
|
||||
int cq_max_size(struct cq_handle *);
|
||||
unsigned int cq_memory_allocation(void);
|
||||
#ifdef DEBUG
|
||||
void cq_debug(struct cq_handle *, int);
|
||||
void cq_dump(struct cq_handle *);
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue