Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5056 serge 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 
13
 * Copyright (C) 2009 Jason Wessel 
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 */