summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-09-09 11:38:39 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-09-09 11:38:39 +0200
commite55f246042a12955200e20abe406b26ab02b94fa (patch)
treeb3920c415b47587a9fef14b29781f7af9a6c1ba4 /dev
parentd3f87b1b84d355ad72366ced5d7e5a43207226c0 (diff)
feat: launch: Working on LaunchKit's implementation.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev')
-rw-r--r--dev/launch/LaunchKit/LaunchKit.h9
-rw-r--r--dev/launch/ne_launch.json20
-rw-r--r--dev/launch/src/LaunchSrv.cc5
3 files changed, 32 insertions, 2 deletions
diff --git a/dev/launch/LaunchKit/LaunchKit.h b/dev/launch/LaunchKit/LaunchKit.h
index 95d91e09..1a134e8f 100644
--- a/dev/launch/LaunchKit/LaunchKit.h
+++ b/dev/launch/LaunchKit/LaunchKit.h
@@ -7,3 +7,12 @@
#pragma once
#include <libSystem/SystemKit/System.h>
+
+/// @author Amlal El Mahrouss
+/// @brief NeKernel Launch Kit.
+
+#define NELAUNCH_INFO(MSG) PrintOut(nullptr, "INFO: [LAUNCH] %s\n", MSG)
+#define NELAUNCH_WARN(MSG) PrintOut(nullptr, "WARN: [LAUNCH] %s\n", MSG)
+
+using LaunchHandle = VoidPtr;
+using KernelStatus = SInt32;
diff --git a/dev/launch/ne_launch.json b/dev/launch/ne_launch.json
new file mode 100644
index 00000000..38379de9
--- /dev/null
+++ b/dev/launch/ne_launch.json
@@ -0,0 +1,20 @@
+{
+ "compiler_path": "x86_64-w64-mingw32-g++",
+ "compiler_std": "c++20",
+ "headers_path": ["../", "./"],
+ "sources_path": ["src/*.cc"],
+ "output_name": "ne_launch",
+ "compiler_flags": [
+ "-ffreestanding",
+ "-shared",
+ "-fPIC",
+ "-fno-rtti",
+ "-fno-exceptions",
+ "-Wl,--subsystem=17"
+ ],
+ "cpp_macros": [
+ "kNeLaunchVersion=0x0100",
+ "kNeLaunchVersionHighest=0x0100",
+ "kNeLaunchVersionLowest=0x0100"
+ ]
+}
diff --git a/dev/launch/src/LaunchSrv.cc b/dev/launch/src/LaunchSrv.cc
index 8c302c6d..40027f65 100644
--- a/dev/launch/src/LaunchSrv.cc
+++ b/dev/launch/src/LaunchSrv.cc
@@ -5,11 +5,12 @@
------------------------------------------- */
#include <LaunchKit/LaunchKit.h>
+#include <libSystem/SystemKit/Err.h>
SInt32 _NeMain(Void) {
- PrintOut(nullptr, "%s", "NeKernel Launcher\n");
+ /// @todo Start LaunchServices.fwrk services, make the launcher manageable too (via mgmt.launch)
- /// @todo Start LaunchServices.fwrk, make the launcher manageable too (via mgmt.launch)
+ NELAUNCH_INFO("Starting services...");
return kErrorSuccess;
}