* uw-thread.c: Remove __FUNCTION__ GNUism.

This commit is contained in:
Nicholas Duffek 2000-02-12 06:08:10 +00:00
parent 6d05b4a653
commit f086451a32
2 changed files with 10 additions and 5 deletions

View 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

View 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)
/*