modify file names and create directories

This commit is contained in:
Tomoki Shirasawa
2012-12-17 15:39:24 +09:00
parent 9849cf57b1
commit 158903c7b6
61 changed files with 5542 additions and 0 deletions

19
lib/include/ihk/debug.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef AAL_DEBUG_H
#define AAL_DEBUG_H
#include <aal/memconst.h>
struct aal_kmsg_buf {
int tail;
int len;
char str[AAL_KMSG_SIZE - sizeof(int) * 2];
};
extern int kprintf(const char *format, ...);
extern int kprintf_lock();
extern void kprintf_unlock(int irqflags);
extern int __kprintf(const char *format, ...);
extern void panic(const char *msg);
#endif