This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

misc touchup patches for linuxthreads_db


just forwarding two minor patches from uClibc for linuxthreads_db
-mike
2006-01-23  Bernhard Fischer  <rep.nop@aon.at>

	* thread_dbP.h: Fix Indices typo in comment.

--- thread_dbP.h
+++ thread_dbP.h
@@ -9,7 +9,7 @@
 #include "../linuxthreads/descr.h"
 
 
-/* Indeces for the symbol names.  */
+/* Indices for the symbol names.  */
 enum
   {
     PTHREAD_THREADS_EVENTS = 0,
2006-01-23  Bernhard Fischer  <rep.nop@aon.at>

	* td_init.c (__td_debug): Only declare when NDEBUG is undefined.

--- td_init.c
+++ td_init.c
@@ -1,5 +1,5 @@
 /* Initialization function of thread debugger support library.
-   Copyright (C) 1999, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2001, 2006 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
 
@@ -20,7 +20,9 @@
 
 #include "thread_dbP.h"
 
+#ifndef NDEBUG
 int __td_debug;
+#endif
 
 
 td_err_e

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]