diff options
author | Tristan Gingold <gingold@adacore.com> | 2009-02-04 08:42:11 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2009-02-04 08:42:11 +0000 |
commit | 7a848be1e44cec4b230c0a1d417953691d71558c (patch) | |
tree | 800f0b358c98b822b4d5ee9b6a46e64cdc887b01 /gdb/solist.h | |
parent | df636c05ba30aa408bf09354036308d3762f4864 (diff) | |
download | gdb-7a848be1e44cec4b230c0a1d417953691d71558c.zip gdb-7a848be1e44cec4b230c0a1d417953691d71558c.tar.gz gdb-7a848be1e44cec4b230c0a1d417953691d71558c.tar.bz2 |
2009-02-04 Tristan Gingold <gingold@adacore.com>
* solist.h (struct target_so_ops): Comment fallback behavior for
operation same.
Diffstat (limited to 'gdb/solist.h')
-rw-r--r-- | gdb/solist.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/solist.h b/gdb/solist.h index 64754f3..56b09e3 100644 --- a/gdb/solist.h +++ b/gdb/solist.h @@ -119,7 +119,9 @@ struct target_so_ops /* Given two so_list objects, one from the GDB thread list and another from the list returned by current_sos, return 1 - if they represent the same library. */ + if they represent the same library. + Falls back to using strcmp on so_original_name field when set + to NULL. */ int (*same) (struct so_list *gdb, struct so_list *inferior); }; |