Debug when an environment variable set, no when it is unset.

This commit is contained in:
Dmitrij Tejblum 1998-09-30 19:17:51 +00:00
parent b78e5d76ba
commit 60abf62bfa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39826
2 changed files with 4 additions and 4 deletions

View File

@ -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");

View File

@ -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");