]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - sim/common/hw-tree.h
Copyright year update in most files of the GDB Project.
[thirdparty/binutils-gdb.git] / sim / common / hw-tree.h
index 3a8caffae6c02eb659b525ce049436217f85e1c3..77931df503e9102c6eb5ecfd7ca30f6333d7826c 100644 (file)
@@ -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 <cagney@highland.com.au>
+   Copyright 2002, 2007-2012 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 <http://www.gnu.org/licenses/>.  */
 
 
 #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::