summaryrefslogtreecommitdiffhomepage
path: root/dev/user/LPC.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-27 20:35:24 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-27 20:35:24 +0100
commita3da0eaaf7569948f83c65ff7997c4d1fc868603 (patch)
tree735b9feba07568c802365169761efe0bc730f16b /dev/user/LPC.h
parente263653c2c1d1858827ac45061ecaefd9047fbb2 (diff)
BootZ: Introduce NetBoot module & consolidate STANDALONE macro
- Renamed __BOOTLDR_STANDALONE__ → __BOOTZ_STANDALONE__ across all modules. - Introduced NetBoot module to support fallback booting via packets. - Updated amd64-desktop build to bundle netboot.sys as part of system image. - NetBoot now properly zeroes out its header and performs sanity check on PatchLength. - Boot flow now attempts to fallback to NetBoot if neoskrnl.exe fails to start. - Reorganized disk formatting logic for clarity and better failure recovery. - HeFS & NeFS minimum disk size lowered (64GiB → 256MiB and 4GiB → 8MiB). - Renamed `IndexProperty` to `Index` in FSKit::Indexer. - Moved HintKit → hint/, updated includes and guards. - Removed deprecated LPC.{cc,h}, replaced by ProcessCodes.h. - Modernized SystemCalls.h typedefs: SCIObject → Ref, ThreadObject → ThreadRef, etc. - Updated userland tools `make_app` and `open` with copyright and behavior fixes. This prepares the BootZ infrastructure for headless/network environments. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/user/LPC.h')
-rw-r--r--dev/user/LPC.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/dev/user/LPC.h b/dev/user/LPC.h
deleted file mode 100644
index 87e5e500..00000000
--- a/dev/user/LPC.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/* -------------------------------------------
-
- Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved.
-
-------------------------------------------- */
-
-#pragma once
-
-#include <user/Macros.h>
-
-/// @file LPC.h
-/// @brief Local Procedure Code type and values.
-
-#define err_local_ok() (kLastError == kErrorSuccess)
-#define err_local_fail() (kLastError != kErrorSuccess)
-#define err_local_get() (kLastError)
-
-typedef SInt32 ErrObject;
-
-inline constexpr ErrObject kErrorSuccess = 0;
-inline constexpr ErrObject kErrorExecutable = 33;
-inline constexpr ErrObject kErrorExecutableLib = 34;
-inline constexpr ErrObject kErrorFileNotFound = 35;
-inline constexpr ErrObject kErrorDirectoryNotFound = 36;
-inline constexpr ErrObject kErrorDiskReadOnly = 37;
-inline constexpr ErrObject kErrorDiskIsFull = 38;
-inline constexpr ErrObject kErrorProcessFault = 39;
-inline constexpr ErrObject kErrorSocketHangUp = 40;
-inline constexpr ErrObject kErrorThreadLocalStorage = 41;
-inline constexpr ErrObject kErrorMath = 42;
-inline constexpr ErrObject kErrorNoNetwork = 43;
-inline constexpr ErrObject kErrorHeapOutOfMemory = 44;
-inline constexpr ErrObject kErrorNoSuchDisk = 45;
-inline constexpr ErrObject kErrorFileExists = 46;
-inline constexpr ErrObject kErrorFormatFailed = 47;
-inline constexpr ErrObject kErrorNetworkTimeout = 48;
-inline constexpr ErrObject kErrorInternal = 49;
-inline constexpr ErrObject kErrorForkAlreadyExists = 50;
-inline constexpr ErrObject kErrorOutOfTeamSlot = 51;
-inline constexpr ErrObject kErrorHeapNotPresent = 52;
-inline constexpr ErrObject kErrorNoEntrypoint = 53;
-inline constexpr ErrObject kErrorDiskIsCorrupted = 54;
-inline constexpr ErrObject kErrorDisk = 55;
-inline constexpr ErrObject kErrorInvalidData = 56;
-inline constexpr ErrObject kErrorAsync = 57;
-inline constexpr ErrObject kErrorNonBlocking = 58;
-inline constexpr ErrObject kErrorIPC = 59;
-inline constexpr ErrObject kErrorSign = 60;
-inline constexpr ErrObject kErrorInvalidCreds = 61;
-inline constexpr ErrObject kErrorCDTrayBroken = 62;
-inline constexpr ErrObject kErrorUnrecoverableDisk = 63;
-inline constexpr ErrObject kErrorFileLocked = 64;
-inline constexpr ErrObject kErrorUnimplemented = -1;
-
-/// @brief The last error reported by the system to the process.
-IMPORT_C ErrObject kLastError;