* uw-thread.c: Remove __FUNCTION__ GNUism.
authorNicholas Duffek <nsd@redhat.com>
Sat, 12 Feb 2000 06:08:10 +0000 (06:08 +0000)
committerNicholas Duffek <nsd@redhat.com>
Sat, 12 Feb 2000 06:08:10 +0000 (06:08 +0000)
gdb/ChangeLog
gdb/uw-thread.c

index dcf212f3c60361671bbc78829fa38296e4a794eb..69893c24a992afbff4116d4c76dd76f87807233c 100644 (file)
@@ -1,3 +1,7 @@
+Sat Feb 12 01:08:21 EST 2000  Nicholas Duffek <nsd@cygnus.com>
+
+       * uw-thread.c: Remove __FUNCTION__ GNUism.
+
 2000-01-17  Amit S. Kale  <akale@veritas.com>
 
        * elfread.c (elf_symtab_read): Use offset for the section in which a
index 91d6638b7b8d41717eb703976db1e6d1b2a4653e..07f4ac632b168a6dcee354a0a43ba2824fa13c01 100644 (file)
@@ -2,6 +2,7 @@
    GDB, the GNU debugger.
 
    Copyright 1999, 2000 Free Software Foundation, Inc.
+   Written by Nick Duffek <nsd@cygnus.com>.
 
    This file is part of GDB.
 
@@ -152,11 +153,11 @@ do {                                      \
  *
  * Otherwise, issue an error message and return nonlocally.
  */
-#define CALL_BASE(call)                                        \
-do {                                                   \
-  if (!lwp_infpid ())                                  \
-    error ("uw-thread: "__FUNCTION__": no lwp");       \
-  CALL_BASE_1 (call);                                  \
+#define CALL_BASE(call)                        \
+do {                                   \
+  if (!lwp_infpid ())                  \
+    error ("uw-thread: no lwp");       \
+  CALL_BASE_1 (call);                  \
 } while (0)
 
 /*
This page took 0.027383 seconds and 4 git commands to generate.