[uClibc-cvs] uClibc/libpthread/linuxthreads_db td_symbol_list.c,1.1,1.2

Erik Andersen andersen at codepoet.org
Thu Jan 23 07:52:51 UTC 2003


Update of /var/cvs/uClibc/libpthread/linuxthreads_db
In directory winder:/tmp/cvs-serv453/linuxthreads_db

Modified Files:
	td_symbol_list.c 
Log Message:
Fix indenting.  Per patch from Nathan Field at ghs.com,  change
LINUXTHREADS_PTHREAD_THREADS_MAX to properly point to "__pthread_threads_max".


Index: td_symbol_list.c
===================================================================
RCS file: /var/cvs/uClibc/libpthread/linuxthreads_db/td_symbol_list.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- td_symbol_list.c	8 Aug 2002 08:47:17 -0000	1.1
+++ td_symbol_list.c	23 Jan 2003 07:52:47 -0000	1.2
@@ -24,31 +24,29 @@
 
 static const char *symbol_list_arr[] =
 {
-  [PTHREAD_THREADS_EVENTS] = "__pthread_threads_events",
-  [PTHREAD_LAST_EVENT] = "__pthread_last_event",
-  [PTHREAD_HANDLES_NUM] = "__pthread_handles_num",
-  [PTHREAD_HANDLES] = "__pthread_handles",
-  [PTHREAD_KEYS] = "pthread_keys",
-  [LINUXTHREADS_PTHREAD_THREADS_MAX] = "__linuxthreads_pthread_threads_max",
-  [LINUXTHREADS_PTHREAD_KEYS_MAX] = "__linuxthreads_pthread_keys_max",
-  [LINUXTHREADS_PTHREAD_SIZEOF_DESCR] = "__linuxthreads_pthread_sizeof_descr",
-  [LINUXTHREADS_CREATE_EVENT] = "__linuxthreads_create_event",
-  [LINUXTHREADS_DEATH_EVENT] = "__linuxthreads_death_event",
-  [LINUXTHREADS_REAP_EVENT] = "__linuxthreads_reap_event",
-  [NUM_MESSAGES] = NULL
+    [PTHREAD_THREADS_EVENTS] = "__pthread_threads_events",
+    [PTHREAD_LAST_EVENT] = "__pthread_last_event",
+    [PTHREAD_HANDLES_NUM] = "__pthread_handles_num",
+    [PTHREAD_HANDLES] = "__pthread_handles",
+    [PTHREAD_KEYS] = "pthread_keys",
+    [LINUXTHREADS_PTHREAD_THREADS_MAX] = "__pthread_threads_max",
+    [LINUXTHREADS_PTHREAD_KEYS_MAX] = "__linuxthreads_pthread_keys_max",
+    [LINUXTHREADS_PTHREAD_SIZEOF_DESCR] = "__linuxthreads_pthread_sizeof_descr",
+    [LINUXTHREADS_CREATE_EVENT] = "__linuxthreads_create_event",
+    [LINUXTHREADS_DEATH_EVENT] = "__linuxthreads_death_event",
+    [LINUXTHREADS_REAP_EVENT] = "__linuxthreads_reap_event",
+    [NUM_MESSAGES] = NULL
 };
 
 
-const char **
-td_symbol_list (void)
+const char ** td_symbol_list (void)
 {
-  return symbol_list_arr;
+    return symbol_list_arr;
 }
 
 
-int
-td_lookup (struct ps_prochandle *ps, int idx, psaddr_t *sym_addr)
+int td_lookup (struct ps_prochandle *ps, int idx, psaddr_t *sym_addr)
 {
-  assert (idx >= 0 && idx < NUM_MESSAGES);
-  return ps_pglobal_lookup (ps, LIBPTHREAD_SO, symbol_list_arr[idx], sym_addr);
+    assert (idx >= 0 && idx < NUM_MESSAGES);
+    return ps_pglobal_lookup (ps, LIBPTHREAD_SO, symbol_list_arr[idx], sym_addr);
 }




More information about the uClibc-cvs mailing list