diff options
Diffstat (limited to 'lib/libpthread/thread')
-rw-r--r-- | lib/libpthread/thread/thr_create.c | 3 | ||||
-rw-r--r-- | lib/libpthread/thread/thr_kern.c | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/lib/libpthread/thread/thr_create.c b/lib/libpthread/thread/thr_create.c index 6b57f0e..f552ee5 100644 --- a/lib/libpthread/thread/thr_create.c +++ b/lib/libpthread/thread/thr_create.c @@ -143,9 +143,6 @@ _pthread_create(pthread_t * thread, const pthread_attr_t * attr, || ((kseg = _kseg_alloc(curthread)) == NULL))) { /* Insufficient memory to create a new KSE/KSEG: */ ret = EAGAIN; -#ifndef KMF_DONE -#define KMF_DONE 0x04 -#endif if (kse != NULL) { kse->k_mbx.km_flags |= KMF_DONE; _kse_free(curthread, kse); diff --git a/lib/libpthread/thread/thr_kern.c b/lib/libpthread/thread/thr_kern.c index 8eb084d..365d799 100644 --- a/lib/libpthread/thread/thr_kern.c +++ b/lib/libpthread/thread/thr_kern.c @@ -97,10 +97,6 @@ __FBSDID("$FreeBSD$"); #define KSE_RUNQ_THREADS(kse) ((kse)->k_schedq->sq_runq.pq_threads) -#ifndef KMF_DONE -#define KMF_DONE 0x04 -#endif - /* * We've got to keep track of everything that is allocated, not only * to have a speedy free list, but also so they can be deallocated |