Lines Matching refs:quota
18 /* $Id: quota.c,v 1.18 2007/06/19 23:47:17 tbox Exp $ */
26 #include <isc/quota.h>
30 isc_quota_init(isc_quota_t *quota, int max) {
31 quota->max = max;
32 quota->used = 0;
33 quota->soft = 0;
34 return (isc_mutex_init("a->lock));
38 isc_quota_destroy(isc_quota_t *quota) {
39 INSIST(quota->used == 0);
40 quota->max = 0;
41 quota->used = 0;
42 quota->soft = 0;
43 DESTROYLOCK("a->lock);
47 isc_quota_soft(isc_quota_t *quota, int soft) {
48 LOCK("a->lock);
49 quota->soft = soft;
50 UNLOCK("a->lock);
54 isc_quota_max(isc_quota_t *quota, int max) {
55 LOCK("a->lock);
56 quota->max = max;
57 UNLOCK("a->lock);
61 isc_quota_reserve(isc_quota_t *quota) {
63 LOCK("a->lock);
64 if (quota->max == 0 || quota->used < quota->max) {
65 if (quota->soft == 0 || quota->used < quota->soft)
69 quota->used++;
72 UNLOCK("a->lock);
77 isc_quota_release(isc_quota_t *quota) {
78 LOCK("a->lock);
79 INSIST(quota->used > 0);
80 quota->used--;
81 UNLOCK("a->lock);
85 isc_quota_attach(isc_quota_t *quota, isc_quota_t **p)
89 result = isc_quota_reserve(quota);
91 *p = quota;