X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=sim%2Fcommon%2Fhw-tree.h;h=bc4433a95ee13482464ad9b22383232d541e19fe;hb=3a67e1a6b4430374f3073e51bb19347d4c421cfe;hp=3a8caffae6c02eb659b525ce049436217f85e1c3;hpb=e98fe4f7b54cbdf29aef9287bbb1bea8801dd05a;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/common/hw-tree.h b/sim/common/hw-tree.h index 3a8caffae6..bc4433a95e 100644 --- a/sim/common/hw-tree.h +++ b/sim/common/hw-tree.h @@ -1,22 +1,23 @@ -/* This file is part of the program psim. +/* The common simulator framework for GDB, the GNU Debugger. - Copyright (C) 1994-1997, Andrew Cagney + Copyright 2002-2018 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Contributed by Andrew Cagney and Red Hat. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - - */ + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifndef HW_TREE @@ -27,16 +28,32 @@ struct hw *hw_tree_create (SIM_DESC sd, const char *device); +void hw_tree_delete +(struct hw *root); + struct hw *hw_tree_parse (struct hw *root, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); +struct hw *hw_tree_vparse +(struct hw *root, + const char *fmt, + va_list ap); + + void hw_tree_finish (struct hw *root); +typedef void (hw_tree_print_callback) + (void *, + const char *fmt, + ...); + void hw_tree_print -(struct hw *root); +(struct hw *root, + hw_tree_print_callback *print, + void *file); /* Tree traversal::