diff options
author | Jeremy Allison <jra@samba.org> | 2002-10-04 22:53:30 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-10-04 22:53:30 +0000 |
commit | 9c94d1a2f72b6fcbbd056804837fc8719806491b (patch) | |
tree | 71d5b825cc8bebd43bf319b604a003bcddf3cdd7 /source3/include | |
parent | fac6a13fd3cee8f3f4f7f8e3a2dbb700181c67c3 (diff) | |
download | samba-9c94d1a2f72b6fcbbd056804837fc8719806491b.tar.gz samba-9c94d1a2f72b6fcbbd056804837fc8719806491b.tar.bz2 samba-9c94d1a2f72b6fcbbd056804837fc8719806491b.zip |
Add a timeout to tdb_lock_bystring(). Ensure we never have more than
MAX_PRINT_JOBS in a queue.
Jeremy.
(This used to be commit bb58a08af459b4abae9d53ab98c15f40638ce52b)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/local.h | 3 | ||||
-rw-r--r-- | source3/include/printing.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/source3/include/local.h b/source3/include/local.h index 5096e13fc3..2be9c1e101 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -210,4 +210,7 @@ /* this enables the "rabbit pellet" fix for SMBwritebraw */ #define RABBIT_PELLET_FIX 1 +/* Max number of jobs per print queue. */ +#define PRINT_MAX_JOBID 10000 + #endif diff --git a/source3/include/printing.h b/source3/include/printing.h index 9774a6acd9..38ff7eac36 100644 --- a/source3/include/printing.h +++ b/source3/include/printing.h @@ -65,7 +65,7 @@ extern struct printif generic_printif; extern struct printif cups_printif; #endif /* HAVE_CUPS */ -#define PRINT_MAX_JOBID 10000 +/* PRINT_MAX_JOBID is now defined in local.h */ #define UNIX_JOB_START PRINT_MAX_JOBID #define NEXT_JOBID(j) ((j+1) % PRINT_MAX_JOBID > 0 ? (j+1) % PRINT_MAX_JOBID : 1) |