|
@@ -17,7 +17,7 @@ typedef enum {
|
|
|
KDB_REPEAT_NONE = 0, /* Do not repeat this command */
|
|
|
KDB_REPEAT_NO_ARGS, /* Repeat the command without arguments */
|
|
|
KDB_REPEAT_WITH_ARGS, /* Repeat the command including its arguments */
|
|
|
-} kdb_repeat_t;
|
|
|
+} kdb_cmdflags_t;
|
|
|
|
|
|
typedef int (*kdb_func_t)(int, const char **);
|
|
|
|
|
@@ -147,7 +147,7 @@ static inline const char *kdb_walk_kallsyms(loff_t *pos)
|
|
|
/* Dynamic kdb shell command registration */
|
|
|
extern int kdb_register(char *, kdb_func_t, char *, char *, short);
|
|
|
extern int kdb_register_repeat(char *, kdb_func_t, char *, char *,
|
|
|
- short, kdb_repeat_t);
|
|
|
+ short, kdb_cmdflags_t);
|
|
|
extern int kdb_unregister(char *);
|
|
|
#else /* ! CONFIG_KGDB_KDB */
|
|
|
static inline __printf(1, 2) int kdb_printf(const char *fmt, ...) { return 0; }
|
|
@@ -156,7 +156,7 @@ static inline int kdb_register(char *cmd, kdb_func_t func, char *usage,
|
|
|
char *help, short minlen) { return 0; }
|
|
|
static inline int kdb_register_repeat(char *cmd, kdb_func_t func, char *usage,
|
|
|
char *help, short minlen,
|
|
|
- kdb_repeat_t repeat) { return 0; }
|
|
|
+ kdb_cmdflags_t flags) { return 0; }
|
|
|
static inline int kdb_unregister(char *cmd) { return 0; }
|
|
|
#endif /* CONFIG_KGDB_KDB */
|
|
|
enum {
|