diff options
author | Kevin Buettner <kevinb@redhat.com> | 2005-03-18 21:03:39 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2005-03-18 21:03:39 +0000 |
commit | 93ad78a72d4752c44d41ec4a834c1d9aa4f9bb2e (patch) | |
tree | 0bf016010ed92e4b0da4e6ca8fad0bd467bbb114 /gdb/exceptions.h | |
parent | 8cf46f625a7407f692fbea17719666fd8713917c (diff) | |
download | gdb-93ad78a72d4752c44d41ec4a834c1d9aa4f9bb2e.zip gdb-93ad78a72d4752c44d41ec4a834c1d9aa4f9bb2e.tar.gz gdb-93ad78a72d4752c44d41ec4a834c1d9aa4f9bb2e.tar.bz2 |
Move printing of TLS related error messages to dwarf2loc.c.
Diffstat (limited to 'gdb/exceptions.h')
-rw-r--r-- | gdb/exceptions.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/exceptions.h b/gdb/exceptions.h index c07289b..ea4f3a2 100644 --- a/gdb/exceptions.h +++ b/gdb/exceptions.h @@ -56,6 +56,22 @@ enum errors { exception.message. */ GENERIC_ERROR, NOT_FOUND_ERROR, + + /* Thread library lacks support necessary for finding thread local + storage. */ + TLS_NO_LIBRARY_SUPPORT_ERROR, + + /* Load module not found while attempting to find thread local storage. */ + TLS_LOAD_MODULE_NOT_FOUND_ERROR, + + /* Thread local storage has not been allocated yet. */ + TLS_NOT_ALLOCATED_YET_ERROR, + + /* Something else went wrong while attempting to find thread local + storage. The ``struct exception'' message field provides more + detail. */ + TLS_GENERIC_ERROR, + /* Add more errors here. */ NR_ERRORS }; |