X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fregset.h;h=7a38f4085f4bbfaa7c7535790daca23f057b0555;hb=37d9e0623102352e0ae27c311760a9e6569ae5e0;hp=35853223a8039db7e86657e89d238f6e68644eba;hpb=32d0add0a654c1204ab71dc8a55d9374538c4b33;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/regset.h b/gdb/regset.h index 35853223a8..7a38f4085f 100644 --- a/gdb/regset.h +++ b/gdb/regset.h @@ -1,6 +1,6 @@ /* Manage register sets. - Copyright (C) 2003-2015 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. This file is part of GDB. @@ -43,6 +43,13 @@ struct regset /* Function collecting values in a register set from a register cache. */ collect_regset_ftype *collect_regset; + + unsigned flags; }; +/* Values for a regset's 'flags' field. */ + +#define REGSET_VARIABLE_SIZE 1 /* Accept a larger regset section size + in a core file without warning. */ + #endif /* regset.h */