aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads_db
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-12-28 16:41:29 +0000
committerAndreas Jaeger <aj@suse.de>2001-12-28 16:41:29 +0000
commit5e67a81b693b1fad23b6816366b8aedd2ffd0ed0 (patch)
tree9f7a8218baad6dc9250ca66224c3ac7c29344cbc /linuxthreads_db
parent362f8329ccf0f26d3976dfd9d50b70c97117a5f4 (diff)
downloadglibc-5e67a81b693b1fad23b6816366b8aedd2ffd0ed0.zip
glibc-5e67a81b693b1fad23b6816366b8aedd2ffd0ed0.tar.gz
glibc-5e67a81b693b1fad23b6816366b8aedd2ffd0ed0.tar.bz2
Don't use __FUNCTION__ as literal.
Diffstat (limited to 'linuxthreads_db')
-rw-r--r--linuxthreads_db/td_init.c4
-rw-r--r--linuxthreads_db/td_log.c6
-rw-r--r--linuxthreads_db/td_ta_clear_event.c4
-rw-r--r--linuxthreads_db/td_ta_delete.c4
-rw-r--r--linuxthreads_db/td_ta_enable_stats.c4
-rw-r--r--linuxthreads_db/td_ta_event_addr.c2
-rw-r--r--linuxthreads_db/td_ta_event_getmsg.c4
-rw-r--r--linuxthreads_db/td_ta_get_nthreads.c2
-rw-r--r--linuxthreads_db/td_ta_get_ph.c4
-rw-r--r--linuxthreads_db/td_ta_get_stats.c4
-rw-r--r--linuxthreads_db/td_ta_map_id2thr.c2
-rw-r--r--linuxthreads_db/td_ta_map_lwp2thr.c4
-rw-r--r--linuxthreads_db/td_ta_new.c2
-rw-r--r--linuxthreads_db/td_ta_reset_stats.c4
-rw-r--r--linuxthreads_db/td_ta_set_event.c4
-rw-r--r--linuxthreads_db/td_ta_setconcurrency.c4
-rw-r--r--linuxthreads_db/td_ta_thr_iter.c4
-rw-r--r--linuxthreads_db/td_ta_tsd_iter.c4
-rw-r--r--linuxthreads_db/td_thr_clear_event.c4
-rw-r--r--linuxthreads_db/td_thr_dbresume.c4
-rw-r--r--linuxthreads_db/td_thr_dbsuspend.c4
-rw-r--r--linuxthreads_db/td_thr_event_enable.c4
-rw-r--r--linuxthreads_db/td_thr_event_getmsg.c4
-rw-r--r--linuxthreads_db/td_thr_get_info.c4
-rw-r--r--linuxthreads_db/td_thr_getfpregs.c2
-rw-r--r--linuxthreads_db/td_thr_getgregs.c2
-rw-r--r--linuxthreads_db/td_thr_getxregs.c4
-rw-r--r--linuxthreads_db/td_thr_getxregsize.c4
-rw-r--r--linuxthreads_db/td_thr_set_event.c4
-rw-r--r--linuxthreads_db/td_thr_setfpregs.c2
-rw-r--r--linuxthreads_db/td_thr_setgregs.c2
-rw-r--r--linuxthreads_db/td_thr_setprio.c4
-rw-r--r--linuxthreads_db/td_thr_setsigpending.c4
-rw-r--r--linuxthreads_db/td_thr_setxregs.c4
-rw-r--r--linuxthreads_db/td_thr_sigsetmask.c4
-rw-r--r--linuxthreads_db/td_thr_tsd.c4
-rw-r--r--linuxthreads_db/td_thr_validate.c2
37 files changed, 66 insertions, 66 deletions
diff --git a/linuxthreads_db/td_init.c b/linuxthreads_db/td_init.c
index 6c4dfc6..d714f1b 100644
--- a/linuxthreads_db/td_init.c
+++ b/linuxthreads_db/td_init.c
@@ -1,5 +1,5 @@
/* Initialization function of thread debugger support library.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -27,6 +27,6 @@ td_err_e
td_init (void)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_init");
return TD_OK;
}
diff --git a/linuxthreads_db/td_log.c b/linuxthreads_db/td_log.c
index 2007eaa..025273a 100644
--- a/linuxthreads_db/td_log.c
+++ b/linuxthreads_db/td_log.c
@@ -1,5 +1,5 @@
/* Noop, left for historical reasons.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,8 +25,8 @@ td_err_e
td_log (void)
{
/* This interface is deprecated in the Sun interface. We provide it
- for compatibility but don't do anyhting ourself. We might in
+ for compatibility but don't do anything ourself. We might in
future do some logging if this seems reasonable. */
- LOG (__FUNCTION__);
+ LOG ("td_log");
return TD_OK;
}
diff --git a/linuxthreads_db/td_ta_clear_event.c b/linuxthreads_db/td_ta_clear_event.c
index fc7fde1..bdbcf47 100644
--- a/linuxthreads_db/td_ta_clear_event.c
+++ b/linuxthreads_db/td_ta_clear_event.c
@@ -1,5 +1,5 @@
/* Globally disable events.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -29,7 +29,7 @@ td_ta_clear_event (ta, event)
td_thr_events_t old_event;
int i;
- LOG (__FUNCTION__);
+ LOG ("td_ta_clear_event");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_delete.c b/linuxthreads_db/td_ta_delete.c
index 5d23563..0e6ec17 100644
--- a/linuxthreads_db/td_ta_delete.c
+++ b/linuxthreads_db/td_ta_delete.c
@@ -1,5 +1,5 @@
/* Detach to target process.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -26,7 +26,7 @@
td_err_e
td_ta_delete (td_thragent_t *ta)
{
- LOG (__FUNCTION__);
+ LOG ("td_ta_delete");
/* Safety check. */
if (ta == NULL || __td_agent_list == NULL)
diff --git a/linuxthreads_db/td_ta_enable_stats.c b/linuxthreads_db/td_ta_enable_stats.c
index 5a6fef7..1d4c34a 100644
--- a/linuxthreads_db/td_ta_enable_stats.c
+++ b/linuxthreads_db/td_ta_enable_stats.c
@@ -1,5 +1,5 @@
/* Enable collection of statistics for process.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,7 +25,7 @@ td_err_e
td_ta_enable_stats (const td_thragent_t *ta, int enable)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_ta_enable_stats");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_event_addr.c b/linuxthreads_db/td_ta_event_addr.c
index 4f0f7bb..8bce35a 100644
--- a/linuxthreads_db/td_ta_event_addr.c
+++ b/linuxthreads_db/td_ta_event_addr.c
@@ -27,7 +27,7 @@ td_ta_event_addr (const td_thragent_t *ta, td_event_e event, td_notify_t *addr)
td_err_e res = TD_NOEVENT;
int idx = -1;
- LOG (__FUNCTION__);
+ LOG ("td_ta_event_addr");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_event_getmsg.c b/linuxthreads_db/td_ta_event_getmsg.c
index a63a3d0..31ac80b 100644
--- a/linuxthreads_db/td_ta_event_getmsg.c
+++ b/linuxthreads_db/td_ta_event_getmsg.c
@@ -1,5 +1,5 @@
/* Retrieve event.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -32,7 +32,7 @@ td_ta_event_getmsg (const td_thragent_t *ta, td_event_msg_t *msg)
td_eventbuf_t event;
psaddr_t addr;
- LOG (__FUNCTION__);
+ LOG ("td_ta_event_getmsg");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_get_nthreads.c b/linuxthreads_db/td_ta_get_nthreads.c
index f275a25..839b56b 100644
--- a/linuxthreads_db/td_ta_get_nthreads.c
+++ b/linuxthreads_db/td_ta_get_nthreads.c
@@ -25,7 +25,7 @@ td_ta_get_nthreads (const td_thragent_t *ta, int *np)
{
psaddr_t addr;
- LOG (__FUNCTION__);
+ LOG ("td_ta_get_nthreads");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_get_ph.c b/linuxthreads_db/td_ta_get_ph.c
index e08d521..23d3285 100644
--- a/linuxthreads_db/td_ta_get_ph.c
+++ b/linuxthreads_db/td_ta_get_ph.c
@@ -1,5 +1,5 @@
/* Get external process handle.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -24,7 +24,7 @@
td_err_e
td_ta_get_ph (const td_thragent_t *ta, struct ps_prochandle **ph)
{
- LOG (__FUNCTION__);
+ LOG ("td_ta_get_ph");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_get_stats.c b/linuxthreads_db/td_ta_get_stats.c
index 9aa049c..6bf2f53 100644
--- a/linuxthreads_db/td_ta_get_stats.c
+++ b/linuxthreads_db/td_ta_get_stats.c
@@ -1,5 +1,5 @@
/* Retrieve statistics for process.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,7 +25,7 @@ td_err_e
td_ta_get_stats (const td_thragent_t *ta, td_ta_stats_t *statsp)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_ta_get_stats");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_map_id2thr.c b/linuxthreads_db/td_ta_map_id2thr.c
index 5171a5b..184f2de 100644
--- a/linuxthreads_db/td_ta_map_id2thr.c
+++ b/linuxthreads_db/td_ta_map_id2thr.c
@@ -28,7 +28,7 @@ td_ta_map_id2thr (const td_thragent_t *ta, pthread_t pt, td_thrhandle_t *th)
struct _pthread_descr_struct pds;
int pthread_threads_max;
- LOG (__FUNCTION__);
+ LOG ("td_ta_map_id2thr");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_map_lwp2thr.c b/linuxthreads_db/td_ta_map_lwp2thr.c
index 8ae5aec..e7addf9 100644
--- a/linuxthreads_db/td_ta_map_lwp2thr.c
+++ b/linuxthreads_db/td_ta_map_lwp2thr.c
@@ -1,5 +1,5 @@
/* Which thread is running on an lwp?
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -34,7 +34,7 @@ td_ta_map_lwp2thr (const td_thragent_t *ta, lwpid_t lwpid, td_thrhandle_t *th)
# define num 1
#endif
- LOG (__FUNCTION__);
+ LOG ("td_ta_map_lwp2thr");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_new.c b/linuxthreads_db/td_ta_new.c
index 7bf6879..7505f53 100644
--- a/linuxthreads_db/td_ta_new.c
+++ b/linuxthreads_db/td_ta_new.c
@@ -35,7 +35,7 @@ td_ta_new (struct ps_prochandle *ps, td_thragent_t **ta)
psaddr_t addr;
struct agent_list *elemp;
- LOG (__FUNCTION__);
+ LOG ("td_ta_new");
/* Get the global event mask. This is one of the variables which
are new in the thread library to enable debugging. If it is
diff --git a/linuxthreads_db/td_ta_reset_stats.c b/linuxthreads_db/td_ta_reset_stats.c
index 9cc386c..b3ddbd0 100644
--- a/linuxthreads_db/td_ta_reset_stats.c
+++ b/linuxthreads_db/td_ta_reset_stats.c
@@ -1,5 +1,5 @@
/* Reset statistics.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,7 +25,7 @@ td_err_e
td_ta_reset_stats (const td_thragent_t *ta)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_ta_reset_stats");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_set_event.c b/linuxthreads_db/td_ta_set_event.c
index 0ea8fc1..73cf9f4 100644
--- a/linuxthreads_db/td_ta_set_event.c
+++ b/linuxthreads_db/td_ta_set_event.c
@@ -1,5 +1,5 @@
/* Globally enable events.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -29,7 +29,7 @@ td_ta_set_event (ta, event)
td_thr_events_t old_event;
int i;
- LOG (__FUNCTION__);
+ LOG ("td_ta_set_event");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_setconcurrency.c b/linuxthreads_db/td_ta_setconcurrency.c
index 25c1c90..408e763 100644
--- a/linuxthreads_db/td_ta_setconcurrency.c
+++ b/linuxthreads_db/td_ta_setconcurrency.c
@@ -1,5 +1,5 @@
/* Set suggested concurrency level for process.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,7 +25,7 @@ td_err_e
td_ta_setconcurrency (const td_thragent_t *ta, int level)
{
/* This is something LinuxThreads does not support. */
- LOG (__FUNCTION__);
+ LOG ("td_ta_setconcurrency");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_thr_iter.c b/linuxthreads_db/td_ta_thr_iter.c
index 4c6f3f4..80ee539 100644
--- a/linuxthreads_db/td_ta_thr_iter.c
+++ b/linuxthreads_db/td_ta_thr_iter.c
@@ -1,5 +1,5 @@
/* Iterate over a process's threads.
- Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -86,7 +86,7 @@ td_ta_thr_iter (const td_thragent_t *ta, td_thr_iter_f *callback,
# define num 1
#endif
- LOG (__FUNCTION__);
+ LOG ("td_ta_thr_iter");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_ta_tsd_iter.c b/linuxthreads_db/td_ta_tsd_iter.c
index f299385..4dbc8dd 100644
--- a/linuxthreads_db/td_ta_tsd_iter.c
+++ b/linuxthreads_db/td_ta_tsd_iter.c
@@ -1,5 +1,5 @@
/* Iterate over a process's thread-specific data.
- Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -29,7 +29,7 @@ td_ta_tsd_iter (const td_thragent_t *ta, td_key_iter_f *callback,
int pthread_keys_max;
int cnt;
- LOG (__FUNCTION__);
+ LOG ("td_ta_tsd_iter");
/* Test whether the TA parameter is ok. */
if (! ta_ok (ta))
diff --git a/linuxthreads_db/td_thr_clear_event.c b/linuxthreads_db/td_thr_clear_event.c
index b75c0f0..57cb821 100644
--- a/linuxthreads_db/td_thr_clear_event.c
+++ b/linuxthreads_db/td_thr_clear_event.c
@@ -1,5 +1,5 @@
/* Disable specific event for thread.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -31,7 +31,7 @@ td_thr_clear_event (th, event)
td_thr_events_t old_event;
int i;
- LOG (__FUNCTION__);
+ LOG ("td_thr_clear_event");
/* Write the new value into the thread data structure. */
if (ps_pdread (th->th_ta_p->ph,
diff --git a/linuxthreads_db/td_thr_dbresume.c b/linuxthreads_db/td_thr_dbresume.c
index 68d62af..7b7f6ee 100644
--- a/linuxthreads_db/td_thr_dbresume.c
+++ b/linuxthreads_db/td_thr_dbresume.c
@@ -1,5 +1,5 @@
/* Resume execution of given thread.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,6 +25,6 @@ td_err_e
td_thr_dbresume (const td_thrhandle_t *th)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_thr_dbresume");
return TD_NOCAPAB;
}
diff --git a/linuxthreads_db/td_thr_dbsuspend.c b/linuxthreads_db/td_thr_dbsuspend.c
index 0655a17..ef66802 100644
--- a/linuxthreads_db/td_thr_dbsuspend.c
+++ b/linuxthreads_db/td_thr_dbsuspend.c
@@ -1,5 +1,5 @@
/* Suspend execution of given thread.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,6 +25,6 @@ td_err_e
td_thr_dbsuspend (const td_thrhandle_t *th)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_thr_dbsuspend");
return TD_NOCAPAB;
}
diff --git a/linuxthreads_db/td_thr_event_enable.c b/linuxthreads_db/td_thr_event_enable.c
index 007f2a4..52404e5 100644
--- a/linuxthreads_db/td_thr_event_enable.c
+++ b/linuxthreads_db/td_thr_event_enable.c
@@ -1,5 +1,5 @@
/* Enable event process-wide.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -28,7 +28,7 @@ td_thr_event_enable (th, onoff)
const td_thrhandle_t *th;
int onoff;
{
- LOG (__FUNCTION__);
+ LOG ("td_thr_event_enable");
/* Write the new value into the thread data structure. */
if (ps_pdwrite (th->th_ta_p->ph,
diff --git a/linuxthreads_db/td_thr_event_getmsg.c b/linuxthreads_db/td_thr_event_getmsg.c
index 95b05ff..6a10cdc 100644
--- a/linuxthreads_db/td_thr_event_getmsg.c
+++ b/linuxthreads_db/td_thr_event_getmsg.c
@@ -1,5 +1,5 @@
/* Retrieve event.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -29,7 +29,7 @@ td_thr_event_getmsg (const td_thrhandle_t *th, td_event_msg_t *msg)
{
td_eventbuf_t event;
- LOG (__FUNCTION__);
+ LOG ("td_thr_event_getmsg");
/* Read the even structure from the target. */
if (ps_pdread (th->th_ta_p->ph,
diff --git a/linuxthreads_db/td_thr_get_info.c b/linuxthreads_db/td_thr_get_info.c
index ed6b20f..b479170 100644
--- a/linuxthreads_db/td_thr_get_info.c
+++ b/linuxthreads_db/td_thr_get_info.c
@@ -1,5 +1,5 @@
/* Get thread information.
- Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -29,7 +29,7 @@ td_thr_get_info (const td_thrhandle_t *th, td_thrinfo_t *infop)
{
struct _pthread_descr_struct pds;
- LOG (__FUNCTION__);
+ LOG ("td_thr_get_info");
/* Get the thread descriptor. */
if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds,
diff --git a/linuxthreads_db/td_thr_getfpregs.c b/linuxthreads_db/td_thr_getfpregs.c
index 67d5cd1..b453cc0 100644
--- a/linuxthreads_db/td_thr_getfpregs.c
+++ b/linuxthreads_db/td_thr_getfpregs.c
@@ -26,7 +26,7 @@ td_thr_getfpregs (const td_thrhandle_t *th, prfpregset_t *regset)
{
struct _pthread_descr_struct pds;
- LOG (__FUNCTION__);
+ LOG ("td_thr_getfpregs");
/* We have to get the state and the PID for this thread. */
if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds,
diff --git a/linuxthreads_db/td_thr_getgregs.c b/linuxthreads_db/td_thr_getgregs.c
index 5a42b67..462a1a1 100644
--- a/linuxthreads_db/td_thr_getgregs.c
+++ b/linuxthreads_db/td_thr_getgregs.c
@@ -26,7 +26,7 @@ td_thr_getgregs (const td_thrhandle_t *th, prgregset_t gregs)
{
struct _pthread_descr_struct pds;
- LOG (__FUNCTION__);
+ LOG ("td_thr_getgregs");
/* We have to get the state and the PID for this thread. */
if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds,
diff --git a/linuxthreads_db/td_thr_getxregs.c b/linuxthreads_db/td_thr_getxregs.c
index 615d882..39cd73c 100644
--- a/linuxthreads_db/td_thr_getxregs.c
+++ b/linuxthreads_db/td_thr_getxregs.c
@@ -1,5 +1,5 @@
/* Get a thread's extra state register set.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,6 +25,6 @@ td_err_e
td_thr_getxregs (const td_thrhandle_t *th, void *xregs)
{
/* XXX This might be platform specific. */
- LOG (__FUNCTION__);
+ LOG ("td_thr_getxregs");
return TD_NOXREGS;
}
diff --git a/linuxthreads_db/td_thr_getxregsize.c b/linuxthreads_db/td_thr_getxregsize.c
index ed55bba..5d8ac28 100644
--- a/linuxthreads_db/td_thr_getxregsize.c
+++ b/linuxthreads_db/td_thr_getxregsize.c
@@ -1,5 +1,5 @@
/* Get the size of the extra state register set for this architecture.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,6 +25,6 @@ td_err_e
td_thr_getxregsize (const td_thrhandle_t *th, int *sizep)
{
/* XXX This might be platform specific. */
- LOG (__FUNCTION__);
+ LOG ("td_thr_getxregsize");
return TD_NOXREGS;
}
diff --git a/linuxthreads_db/td_thr_set_event.c b/linuxthreads_db/td_thr_set_event.c
index f537cce..b90a6a6 100644
--- a/linuxthreads_db/td_thr_set_event.c
+++ b/linuxthreads_db/td_thr_set_event.c
@@ -1,5 +1,5 @@
/* Enable specific event for thread.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -31,7 +31,7 @@ td_thr_set_event (th, event)
td_thr_events_t old_event;
int i;
- LOG (__FUNCTION__);
+ LOG ("td_thr_set_event");
/* Write the new value into the thread data structure. */
if (ps_pdread (th->th_ta_p->ph,
diff --git a/linuxthreads_db/td_thr_setfpregs.c b/linuxthreads_db/td_thr_setfpregs.c
index d5e1ce3..0d4fce5 100644
--- a/linuxthreads_db/td_thr_setfpregs.c
+++ b/linuxthreads_db/td_thr_setfpregs.c
@@ -26,7 +26,7 @@ td_thr_setfpregs (const td_thrhandle_t *th, const prfpregset_t *fpregs)
{
struct _pthread_descr_struct pds;
- LOG (__FUNCTION__);
+ LOG ("td_thr_setfpregs");
/* We have to get the state and the PID for this thread. */
if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds,
diff --git a/linuxthreads_db/td_thr_setgregs.c b/linuxthreads_db/td_thr_setgregs.c
index 8c7baa8..3cf6539 100644
--- a/linuxthreads_db/td_thr_setgregs.c
+++ b/linuxthreads_db/td_thr_setgregs.c
@@ -26,7 +26,7 @@ td_thr_setgregs (const td_thrhandle_t *th, prgregset_t gregs)
{
struct _pthread_descr_struct pds;
- LOG (__FUNCTION__);
+ LOG ("td_thr_setgregs");
/* We have to get the state and the PID for this thread. */
if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds,
diff --git a/linuxthreads_db/td_thr_setprio.c b/linuxthreads_db/td_thr_setprio.c
index c1e3ca5..98d202df 100644
--- a/linuxthreads_db/td_thr_setprio.c
+++ b/linuxthreads_db/td_thr_setprio.c
@@ -1,5 +1,5 @@
/* Set a thread's priority.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,6 +25,6 @@ td_err_e
td_thr_setprio (const td_thrhandle_t *th, int prio)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_thr_setprio");
return TD_OK;
}
diff --git a/linuxthreads_db/td_thr_setsigpending.c b/linuxthreads_db/td_thr_setsigpending.c
index bec429e..98e3014 100644
--- a/linuxthreads_db/td_thr_setsigpending.c
+++ b/linuxthreads_db/td_thr_setsigpending.c
@@ -1,5 +1,5 @@
/* Raise a signal for a thread.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -26,6 +26,6 @@ td_thr_setsigpending (const td_thrhandle_t *th, unsigned char n,
const sigset_t *ss)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_thr_setsigpending");
return TD_OK;
}
diff --git a/linuxthreads_db/td_thr_setxregs.c b/linuxthreads_db/td_thr_setxregs.c
index c1915e5..da77ab3 100644
--- a/linuxthreads_db/td_thr_setxregs.c
+++ b/linuxthreads_db/td_thr_setxregs.c
@@ -1,5 +1,5 @@
/* Set a thread's extra state register set.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,6 +25,6 @@ td_err_e
td_thr_setxregs (const td_thrhandle_t *ta, const void *addr)
{
/* XXX This might have to be platform specific. */
- LOG (__FUNCTION__);
+ LOG ("td_thr_setxregs");
return TD_NOXREGS;
}
diff --git a/linuxthreads_db/td_thr_sigsetmask.c b/linuxthreads_db/td_thr_sigsetmask.c
index ef3ebcb..8b0eb81 100644
--- a/linuxthreads_db/td_thr_sigsetmask.c
+++ b/linuxthreads_db/td_thr_sigsetmask.c
@@ -1,5 +1,5 @@
/* Set a thread's signal mask.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -25,6 +25,6 @@ td_err_e
td_thr_sigsetmask (const td_thrhandle_t *th, const sigset_t *ss)
{
/* XXX We have to figure out what has to be done. */
- LOG (__FUNCTION__);
+ LOG ("td_thr_sigsetmask");
return TD_OK;
}
diff --git a/linuxthreads_db/td_thr_tsd.c b/linuxthreads_db/td_thr_tsd.c
index 3020336..0dd37f8 100644
--- a/linuxthreads_db/td_thr_tsd.c
+++ b/linuxthreads_db/td_thr_tsd.c
@@ -1,5 +1,5 @@
/* Get a thread-specific data pointer for a thread.
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
@@ -33,7 +33,7 @@ td_thr_tsd (const td_thrhandle_t *th, const thread_key_t tk, void **data)
unsigned int idx2nd;
void *p;
- LOG (__FUNCTION__);
+ LOG ("td_thr_tsd");
/* Get the thread descriptor. */
if (ps_pdread (th->th_ta_p->ph, th->th_unique, &pds,
diff --git a/linuxthreads_db/td_thr_validate.c b/linuxthreads_db/td_thr_validate.c
index 3544710..8821f0e 100644
--- a/linuxthreads_db/td_thr_validate.c
+++ b/linuxthreads_db/td_thr_validate.c
@@ -28,7 +28,7 @@ td_thr_validate (const td_thrhandle_t *th)
int pthread_threads_max = th->th_ta_p->pthread_threads_max;
int cnt;
- LOG (__FUNCTION__);
+ LOG ("td_thr_validate");
/* Now get all descriptors, one after the other. */
for (cnt = 0; cnt < pthread_threads_max; ++cnt, ++handles)