pub unsafe extern "C" fn fz_defer_reap_start(ctx: *mut fz_context)
Expand description

Increment the defer reap count.

No reap operations will take place (except for those triggered by an immediate failed malloc) until the defer reap count returns to 0.

Call this at the start of a process during which you potentially might drop many reapable objects.

It is vital that every fz_defer_reap_start is matched by a fz_defer_reap_end call.