1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00
This commit is contained in:
Adrien Bourmault 2019-03-18 20:56:43 +01:00
parent 87ecde5c2f
commit f9878932a6
2 changed files with 5 additions and 4 deletions

View File

@ -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

View File

@ -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;
} }