debug
This commit is contained in:
parent
87ecde5c2f
commit
f9878932a6
|
@ -62,9 +62,7 @@
|
||||||
│ ├── atol.o
|
│ ├── atol.o
|
||||||
│ ├── atoul.o
|
│ ├── atoul.o
|
||||||
│ ├── atou.o
|
│ ├── atou.o
|
||||||
│ ├── crtlib
|
|
||||||
│ ├── ctype.o
|
│ ├── ctype.o
|
||||||
│ ├── extras
|
|
||||||
│ ├── itoa.o
|
│ ├── itoa.o
|
||||||
│ ├── kernel
|
│ ├── kernel
|
||||||
│ │ ├── cpuid.o
|
│ │ ├── cpuid.o
|
||||||
|
@ -81,6 +79,7 @@
|
||||||
│ │ ├── ke
|
│ │ ├── ke
|
||||||
│ │ │ └── panic.o
|
│ │ │ └── panic.o
|
||||||
│ │ ├── malloc.o
|
│ │ ├── malloc.o
|
||||||
|
│ │ ├── map.o
|
||||||
│ │ ├── panic.o
|
│ │ ├── panic.o
|
||||||
│ │ ├── table.o
|
│ │ ├── table.o
|
||||||
│ │ ├── term.o
|
│ │ ├── term.o
|
||||||
|
@ -157,7 +156,8 @@
|
||||||
│ │ └── panic.c
|
│ │ └── panic.c
|
||||||
│ ├── mm
|
│ ├── mm
|
||||||
│ │ ├── heap.c
|
│ │ ├── heap.c
|
||||||
│ │ └── malloc.c
|
│ │ ├── malloc.c
|
||||||
|
│ │ └── map.c
|
||||||
│ └── proc
|
│ └── proc
|
||||||
│ ├── Makefile
|
│ ├── Makefile
|
||||||
│ └── sched.c
|
│ └── sched.c
|
||||||
|
@ -168,4 +168,4 @@
|
||||||
├── qemu.log
|
├── qemu.log
|
||||||
└── Readme.md
|
└── Readme.md
|
||||||
|
|
||||||
33 directories, 110 files
|
31 directories, 112 files
|
||||||
|
|
|
@ -66,5 +66,6 @@ error_t KalAllocMemory(void **ptr, size_t req, int flags, size_t align)
|
||||||
error_t KalFreeMemory(void *ptr)
|
error_t KalFreeMemory(void *ptr)
|
||||||
{
|
{
|
||||||
(void)ptr;
|
(void)ptr;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue