Make the #define for thread stack size private by moving it to thread.c, rather than thread.h.

This commit is contained in:
Michael Graff
2000-04-19 20:48:24 +00:00
parent 63b0714574
commit 677976e442
2 changed files with 6 additions and 7 deletions

View File

@@ -35,10 +35,6 @@ isc_thread_create(isc_threadfunc_t, isc_threadarg_t, isc_thread_t *);
/* XXX We could do fancier error handling... */
#ifndef ISC_THREAD_MINSTACKSIZE
#define ISC_THREAD_MINSTACKSIZE (64 * 1024)
#endif
#define isc_thread_join(t, rp) \
((pthread_join((t), (rp)) == 0) ? \
ISC_R_SUCCESS : ISC_R_UNEXPECTED)