| version 1.16, 1998/12/16 04:28:23 |
version 1.17, 1998/12/27 21:13:43 |
| Line 125 struct pool_log { |
|
| Line 125 struct pool_log { |
|
| }; |
}; |
| |
|
| /* Number of entries in pool log buffers */ |
/* Number of entries in pool log buffers */ |
| int pool_logsize = 10; |
#ifndef POOL_LOGSIZE |
| |
#define POOL_LOGSIZE 10 |
| |
#endif |
| |
|
| |
int pool_logsize = POOL_LOGSIZE; |
| |
|
| static void pr_log __P((struct pool *, void *, int, const char *, long)); |
static void pr_log __P((struct pool *, void *, int, const char *, long)); |
| static void pr_printlog __P((struct pool *)); |
static void pr_printlog __P((struct pool *)); |
|
|
| } |
} |
| |
|
| |
|
| #ifdef DEBUG |
#if defined(POOL_DIAGNOSTIC) || defined(DEBUG) |
| /* |
/* |
| * Diagnostic helpers. |
* Diagnostic helpers. |
| */ |
*/ |
|
|
| simple_unlock(&pp->pr_lock); |
simple_unlock(&pp->pr_lock); |
| return (r); |
return (r); |
| } |
} |
| #endif |
#endif /* POOL_DIAGNOSTIC || DEBUG */ |