diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-04-11 20:56:40 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-04-11 20:56:40 +0000 |
commit | a8245ab8a4382ab7dc8a5fde1b82b5e48cb3d36b (patch) | |
tree | 8c9801832d1f37c9506be1b4ecf357801603e572 /gdb | |
parent | 93201743fe8d5101d388a4593d31035e2b0901d4 (diff) | |
download | gdb-a8245ab8a4382ab7dc8a5fde1b82b5e48cb3d36b.zip gdb-a8245ab8a4382ab7dc8a5fde1b82b5e48cb3d36b.tar.gz gdb-a8245ab8a4382ab7dc8a5fde1b82b5e48cb3d36b.tar.bz2 |
2003-04-11 Jeff Johnston <jjohnstn@redhat.com>
* gdb_indent.sh: Recognize pid_t and sigset_t as types.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rwxr-xr-x | gdb/gdb_indent.sh | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index da97e8f..789b3d3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2003-04-11 Jeff Johnston <jjohnstn@redhat.com> + + * gdb_indent.sh: Recognize pid_t and sigset_t as types. + 2003-04-11 Andrew Cagney <cagney@redhat.com> * gdbarch.sh (DEPRECATED_SAVED_PC_AFTER_CALL): Deprecate diff --git a/gdb/gdb_indent.sh b/gdb/gdb_indent.sh index ee0d0fb..555098c 100755 --- a/gdb/gdb_indent.sh +++ b/gdb/gdb_indent.sh @@ -73,8 +73,8 @@ esac types="\ -T FILE \ --T bfd -T asection \ --T prgregset_t -T fpregset_t -T gregset_t \ +-T bfd -T asection -T pid_t \ +-T prgregset_t -T fpregset_t -T gregset_t -T sigset_t \ `cat *.h | sed -n \ -e 's/^.*[^a-z0-9_]\([a-z0-9_]*_ftype\).*$/-T \1/p' \ -e 's/^.*[^a-z0-9_]\([a-z0-9_]*_func\).*$/-T \1/p' \ |