***/
@TOP@
-/**
- * define if pthread_setconcurrency() should be called to tell the
- * OS how many threads we might want to run.
- */
-#undef CALL_PTHREAD_SETCONCURRENCY
-
/** define if flockfile() is available */
#undef HAVE_FLOCKFILE
*** it does not get installed.
***/
-/**
- * define if pthread_setconcurrency() should be called to tell the
- * OS how many threads we might want to run.
- */
-#undef CALL_PTHREAD_SETCONCURRENCY
-
/** define if flockfile() is available */
#undef HAVE_FLOCKFILE
void
isc_thread_setconcurrency(unsigned int level) {
-#if defined(CALL_PTHREAD_SETCONCURRENCY)
(void)pthread_setconcurrency(level);
-#else
- UNUSED(level);
-#endif
}
void