diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-10-20 17:53:37 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-10-20 17:53:37 +0200 |
| commit | 7764e88cd0032cd57fdc17a2906db9d8af9999e1 (patch) | |
| tree | a373ed0682c3161ee38b77089bc8fab821304a6b /tools | |
| parent | 22e85ecdb17888268d32997b20e01cc98968cc3d (diff) | |
IMP: New implementations and improvements.
- Heap class allocation have been fixed.
- Scheduler allocation has been fixed.
- A new better flow for the kernel has been designed.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/framework.hxx | 6 | ||||
| -rw-r--r-- | tools/src/make_framework.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/framework.hxx b/tools/framework.hxx index e82c67d3..416aa8b0 100644 --- a/tools/framework.hxx +++ b/tools/framework.hxx @@ -7,7 +7,7 @@ #include <common_zka.hxx> -#define kFKDLLDirectory "ZKA/DLL/" +#define kFKDLLDirectory "ZKA/DLL/" #define kFKManifestDirectory "ZKA/Manifests/" -#define kFKRootDirectory "ZKA/" -#define kFKExtension ".framework" +#define kFKRootDirectory "ZKA/" +#define kFKExtension ".framework" diff --git a/tools/src/make_framework.cxx b/tools/src/make_framework.cxx index a6efb312..2886b142 100644 --- a/tools/src/make_framework.cxx +++ b/tools/src/make_framework.cxx @@ -25,7 +25,7 @@ int main(int argc, char* argv[]) auto path = std::string(argv[1]); if (!path.ends_with(kFKExtension)) - return 1; + return 1; std::filesystem::path path_arg = path; |
