Commit 81c756e5 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Dump oc->expire info

parent a9b6d0e8
......@@ -197,6 +197,9 @@ pan_objcore(struct vsb *vsb, const char *typ, const struct objcore *oc)
VSB_indent(vsb, 2);
VSB_printf(vsb, "refcnt = %d,\n", oc->refcnt);
VSB_printf(vsb, "flags = 0x%x,\n", oc->flags);
VSB_printf(vsb, "exp_flags = 0x%x,\n", oc->exp_flags);
VSB_printf(vsb, "exp = { %f, %f, %f, %f }\n",
oc->exp.t_origin, oc->exp.ttl, oc->exp.grace, oc->exp.keep);
VSB_printf(vsb, "objhead = %p,\n", oc->objhead);
VSB_printf(vsb, "stevedore = %p", oc->stobj->stevedore);
if (oc->stobj->stevedore != NULL) {
......
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