Created gencore() and minor aestetical changes.

modified:   executer/kernel/mcctrl.h
	modified:   executer/kernel/syscall.c
	modified:   kernel/include/syscall.h
	modified:   kernel/mem.c
This commit is contained in:
Naoki Hamada
2014-07-02 16:23:32 +09:00
parent fd6f0c4075
commit ed9da789e6
4 changed files with 36 additions and 31 deletions

View File

@ -224,9 +224,9 @@ enum {
#undef SYSCALL_DELEGATED
#define __NR_coredump 999 /* pseudo syscall for coredump */
struct coretable {
int len;
void *addr;
struct coretable { /* table entry for a core chunk */
int len; /* length of the chunk */
unsigned long addr; /* physical addr of the chunk */
};
#endif