Rev 2089 | Rev 2106 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2089 | Rev 2093 | ||
---|---|---|---|
Line 67... | Line 67... | ||
67 | count_t argc; /**< Number of arguments. */ |
67 | count_t argc; /**< Number of arguments. */ |
68 | cmd_arg_t *argv; /**< Argument vector. */ |
68 | cmd_arg_t *argv; /**< Argument vector. */ |
69 | void (* help)(void); /**< Function for printing detailed help. */ |
69 | void (* help)(void); /**< Function for printing detailed help. */ |
70 | } cmd_info_t; |
70 | } cmd_info_t; |
71 | 71 | ||
72 | extern spinlock_t cmd_lock; |
72 | SPINLOCK_EXTERN(cmd_lock); |
73 | extern link_t cmd_head; |
73 | extern link_t cmd_head; |
74 | 74 | ||
75 | extern void kconsole_init(void); |
75 | extern void kconsole_init(void); |
76 | extern void kconsole(void *prompt); |
76 | extern void kconsole(void *prompt); |
77 | 77 |