Commit 128cc1a5 authored by Nils Goroll's avatar Nils Goroll

document struct exp_priv ownership

parent 9887efe5
......@@ -43,14 +43,15 @@
struct exp_priv {
unsigned magic;
#define EXP_PRIV_MAGIC 0x9db22482
/* shared */
struct lock mtx;
VSTAILQ_HEAD(,objcore) inbox;
pthread_cond_t condvar;
/* owned by exp thread */
struct worker *wrk;
struct vsl_log vsl;
VSTAILQ_HEAD(,objcore) inbox;
struct binheap *heap;
pthread_cond_t condvar;
};
static struct exp_priv *exphdl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment