Commit 36920626 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Flexelinting

parent b27fc03d
......@@ -696,7 +696,7 @@ vbf_stp_error(struct worker *wrk, struct busyobj *bo)
vtim_real now;
uint8_t *ptr;
struct vsb *synth_body;
struct objcore *stale = NULL;
struct objcore *stale;
CHECK_OBJ_NOTNULL(wrk, WORKER_MAGIC);
CHECK_OBJ_NOTNULL(bo, BUSYOBJ_MAGIC);
......
......@@ -751,8 +751,8 @@ HSH_Fail(struct objcore *oc)
* Abandon a fetch we will not need
*/
void
HSH_Abandon(struct objcore *oc)
static void
hsh_abandon(struct objcore *oc)
{
struct objhead *oh;
......@@ -792,7 +792,7 @@ HSH_Cancel(struct worker *wrk, struct objcore *oc, struct boc *boc)
AN(oc->flags & OC_F_HFM);
if (boc != NULL) {
HSH_Abandon(oc);
hsh_abandon(oc);
ObjWaitState(oc, BOS_FINISHED);
}
......
......@@ -73,5 +73,4 @@ void HSH_AddString(struct req *, void *ctx, const char *str);
unsigned HSH_Purge(struct worker *, struct objhead *, vtim_real ttl_now,
vtim_dur ttl, vtim_dur grace, vtim_dur keep);
struct objcore *HSH_Private(const struct worker *wrk);
void HSH_Abandon(struct objcore *oc);
void HSH_Cancel(struct worker *, struct objcore *, struct boc *);
// -w4
///////////////////////////////////////////////////////////////////////
// deprecated
-esym(765, WS_Reserve)
-esym(714, WS_Reserve)
-esym(759, WS_Reserve)
///////////////////////////////////////////////////////////////////////
-printf(3, VSL)
-printf(2, http_PrintfHeader)
-printf(2, VSB_printf)
......
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