Changeset 3ad953c in mainline for kernel/generic/include
- Timestamp:
- 2008-12-30T19:55:10Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f58321c4
- Parents:
- 6b21292
- Location:
- kernel/generic/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/kconsole.h
r6b21292 r3ad953c 38 38 #include <adt/list.h> 39 39 #include <synch/spinlock.h> 40 #include <ipc/irq.h> 40 41 41 42 #define MAX_CMDLINE 256 … … 84 85 } cmd_info_t; 85 86 87 extern bool kconsole_notify; 88 extern irq_t kconsole_irq; 89 86 90 SPINLOCK_EXTERN(cmd_lock); 87 91 extern link_t cmd_head; 88 92 89 93 extern void kconsole_init(void); 94 extern void kconsole_notify_init(void); 90 95 extern void kconsole(char *prompt, char *msg, bool kcon); 91 96 extern void kconsole_thread(void *data); -
kernel/generic/include/ipc/irq.h
r6b21292 r3ad953c 54 54 * ipc_irq_send_msg_m(), where m is the number of payload arguments. 55 55 */ 56 #define ipc_irq_send_msg_0(irq) \ 57 ipc_irq_send_msg((irq), 0, 0, 0, 0, 0) 56 58 #define ipc_irq_send_msg_1(irq, a1) \ 57 59 ipc_irq_send_msg((irq), (a1), 0, 0, 0, 0)
Note:
See TracChangeset
for help on using the changeset viewer.