Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _KDB_H
  2. #define _KDB_H
  3.  
  4. /*
  5.  * Kernel Debugger Architecture Independent Global Headers
  6.  *
  7.  * This file is subject to the terms and conditions of the GNU General Public
  8.  * License.  See the file "COPYING" in the main directory of this archive
  9.  * for more details.
  10.  *
  11.  * Copyright (c) 2000-2007 Silicon Graphics, Inc.  All Rights Reserved.
  12.  * Copyright (C) 2000 Stephane Eranian <eranian@hpl.hp.com>
  13.  * Copyright (C) 2009 Jason Wessel <jason.wessel@windriver.com>
  14.  */
  15.  
  16. typedef enum {
  17.     KDB_REPEAT_NONE = 0,    /* Do not repeat this command */
  18.     KDB_REPEAT_NO_ARGS, /* Repeat the command without arguments */
  19.     KDB_REPEAT_WITH_ARGS,   /* Repeat the command including its arguments */
  20. } kdb_repeat_t;
  21.  
  22. typedef int (*kdb_func_t)(int, const char **);
  23.  
  24. #endif  /* !_KDB_H */
  25.