Differences From Artifact [6b02cb7aca]:
- File src/main.c — part of check-in [bc8b21d01c] at 2014-09-01 20:40:44 on branch multi-thread — Add thread support to fossil, so SQLite can use additional threads for sorting (experimental) (user: jan.nijtmans size: 73564) [more...]
To Artifact [17bd01ccd4]:
- File src/main.c — part of check-in [3a9f3a73c2] at 2014-09-04 09:22:33 on branch multi-thread — Merge trunk. Implement new "max-worker-threads" setting, which controls the maximum number of auxilary worker threads that a single prepared statement may start. (user: jan.nijtmans size: 73638) [more...]
| ︙ | |||
219 220 221 222 223 224 225 226 227 228 229 230 231 232 | 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | + |
const char *azAuxVal[MX_AUX]; /* Value of each aux() or option() value */
const char **azAuxOpt[MX_AUX]; /* Options of each option() value */
int anAuxCols[MX_AUX]; /* Number of columns for option() values */
int allowSymlinks; /* Cached "allow-symlinks" option */
int mainTimerId; /* Set to fossil_timer_start() */
int iMaxWorkerThreads ; /* Store "max-worker-threads" setting */
#ifdef FOSSIL_ENABLE_JSON
struct FossilJsonBits {
int isJsonMode; /* True if running in JSON mode, else
false. This changes how errors are
reported. In JSON mode we try to
always output JSON-form error
responses and always exit() with
|
| ︙ |