This commit is contained in:
Eirikr Hinngart 2025-06-07 02:23:07 -07:00
parent ff62cb1a91
commit a3bcb454e6
4 changed files with 6 additions and 2 deletions

4
.gitignore vendored
View File

@ -27,7 +27,7 @@ GSYMS
GTAGS GTAGS
\#*# \#*#
CVS CVS
obj # obj # Commented out to allow kernel object files to be tracked
!/.gitignore !/.gitignore
.gitignore .gitignore
.svn .svn
@ -40,6 +40,8 @@ etc/spwd.db
releasetools/image releasetools/image
releasetools/kernel releasetools/kernel
releasetools/revision releasetools/revision
# limine # Commented out to allow limine folder to be tracked
# microwindows
share/zoneinfo/builddir share/zoneinfo/builddir
external/bsd/llvm/dist/clang/test/CodeGenCXX/microsoft-abi-vtables-multiple-nonvirtual-inheritance-no-thu external/bsd/llvm/dist/clang/test/CodeGenCXX/microsoft-abi-vtables-multiple-nonvirtual-inheritance-no-thu
external/bsd/llvm/dist/clang/test/CodeGenCXX/microsoft-abi-vtables-multiple-nonvirtual-inheritance-pure-v external/bsd/llvm/dist/clang/test/CodeGenCXX/microsoft-abi-vtables-multiple-nonvirtual-inheritance-pure-v

1
limine Submodule

@ -0,0 +1 @@
Subproject commit e893b297367dece22f9dc8f87e12ee1ecd380494

1
microwindows Submodule

@ -0,0 +1 @@
Subproject commit d1b097499fca070c31bc09ac780db10e3fb5481d

View File

@ -8,7 +8,7 @@
*/ */
#include "kernel/system.h" #include "kernel/system.h"
// #include <assert.h> // Replaced // #include <assert.h> // Replaced because kernel-specific assertion macros (e.g., KASSERT_PLACEHOLDER) are used instead for better integration with the kernel environment.
#include <minix/type.h> // Kept for now, may need future review #include <minix/type.h> // Kept for now, may need future review
#include "arch_proto.h" #include "arch_proto.h"