This one was forced to 1 and the only reference was a test to verify it
was comprised between 1 and LONGBITS.
#ifndef _HAPROXY_DEFAULTS_H
#define _HAPROXY_DEFAULTS_H
-/* MAX_PROCS defines the highest limit for the global "nbproc" value. It
- * defaults to the number of bits in a long integer but may be lowered to save
- * resources on embedded systems.
- */
-#ifndef MAX_PROCS
-#define MAX_PROCS 1
-#endif
-
/* MAX_THREADS defines the highest limit for the global nbthread value. It
* defaults to the number of bits in a long integer when threads are enabled
* but may be lowered to save resources on embedded systems.
setvbuf(stdout, NULL, _IONBF, 0);
- /* this can only safely be done here, though it's optimized away by
- * the compiler.
- */
- if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
- ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
- "HAProxy was built with value %d, please fix it and rebuild.\n",
- LONGBITS, MAX_PROCS);
- exit(1);
- }
-
/* take a copy of initial limits before we possibly change them */
getrlimit(RLIMIT_NOFILE, &limit);