diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-07-02 10:57:34 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-07-02 10:57:34 +0000 |
commit | 202cbf1c525d01ed5d394d879de5d88ae3d00da1 (patch) | |
tree | 42c47b87bdeee719f7a8b504268435a8255719e9 /gdb/defs.h | |
parent | 586ec8c1d046b8f507c1df125c42ca7eba10e58e (diff) | |
download | gdb-202cbf1c525d01ed5d394d879de5d88ae3d00da1.zip gdb-202cbf1c525d01ed5d394d879de5d88ae3d00da1.tar.gz gdb-202cbf1c525d01ed5d394d879de5d88ae3d00da1.tar.bz2 |
gdb/
Support shell wildcards for 'set auto-load safe-path'.
* auto-load.c: Include fnmatch.h.
(filename_is_in_dir): Rename to ...
(filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
it. Update function comment. Rename dir_len to pattern_len. New
variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
messages. Use gdb_filename_fnmatch.
(filename_is_in_auto_load_safe_path_vec): Rename variable dir to
pattern.
(_initialize_auto_load): Extend the "set auto-load safe-path" help text.
* defs.h (gdb_filename_fnmatch): New declaration.
* utils.c: Include fnmatch.h.
(gdb_filename_fnmatch): New function.
gdb/doc/
* gdb.texinfo (Auto-loading safe path): Note the shell wildcard
possibility.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -388,6 +388,9 @@ extern void substitute_path_component (char **stringp, const char *from, extern pid_t wait_to_die_with_timeout (pid_t pid, int *status, int timeout); #endif +extern int gdb_filename_fnmatch (const char *pattern, const char *string, + int flags); + /* Annotation stuff. */ |