diff options
| author | Dmitrij Tejblum <dt@FreeBSD.org> | 1998-09-30 19:17:51 +0000 |
|---|---|---|
| committer | Dmitrij Tejblum <dt@FreeBSD.org> | 1998-09-30 19:17:51 +0000 |
| commit | 60abf62bfaf7a6ce29562ac0c3688048f7595cfd (patch) | |
| tree | abbe3a3450a5af5c4098c8f08e69421f0a57f885 /lib/libpthread/thread | |
| parent | b78e5d76ba6bb8bf6fe32bbd4ce85826f442b4ca (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread')
| -rw-r--r-- | lib/libpthread/thread/thr_gc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/thread/thr_gc.c b/lib/libpthread/thread/thr_gc.c index faf1b5d13b77..f297fa8a4953 100644 --- a/lib/libpthread/thread/thr_gc.c +++ b/lib/libpthread/thread/thr_gc.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: uthread_gc.c,v 1.1 1998/09/30 06:36:56 jb Exp $ * * Garbage collector thread. Frees memory allocated for dead threads. * @@ -55,7 +55,7 @@ _thread_gc(pthread_addr_t arg) void *p_stack; /* Set a debug flag based on an environment variable. */ - f_debug = (getenv("LIBC_R_DEBUG") == NULL); + f_debug = (getenv("LIBC_R_DEBUG") != NULL); /* Set the name of this thread. */ pthread_set_name_np(_thread_run,"GC"); |
