aboutsummaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorAditya Vidyadhar Kamath <Aditya.Kamath1@ibm.com>2024-01-26 02:19:52 -0600
committerTom Tromey <tom@tromey.com>2024-01-31 17:30:25 -0700
commit49346fa79442ba6f0be832c2c5af4360e52f070a (patch)
treef35762eeb12117683df413823fcba61da533b6fb /gdb/defs.h
parent3d4b08fb895826ec5f0f6c36a3be98f955aa74ea (diff)
downloadbinutils-49346fa79442ba6f0be832c2c5af4360e52f070a.zip
binutils-49346fa79442ba6f0be832c2c5af4360e52f070a.tar.gz
binutils-49346fa79442ba6f0be832c2c5af4360e52f070a.tar.bz2
Fix AIX build break.
A recent commit broke AIX build. The thread_local type defined functions were being considered a weak symbol and hence while creating the binary these symbols were not visible. This patch is a fix for the same.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index f466400..cf471bf 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -562,8 +562,6 @@ extern void (*deprecated_print_frame_info_listing_hook) (struct symtab * s,
int noerror);
extern int (*deprecated_query_hook) (const char *, va_list)
ATTRIBUTE_FPTR_PRINTF(1,0);
-extern thread_local void (*deprecated_warning_hook) (const char *, va_list)
- ATTRIBUTE_FPTR_PRINTF(1,0);
extern void (*deprecated_readline_begin_hook) (const char *, ...)
ATTRIBUTE_FPTR_PRINTF_1;
extern char *(*deprecated_readline_hook) (const char *);