summaryrefslogtreecommitdiffhomepage
path: root/src/libSystem/SystemKit/System.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-19 21:51:20 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-19 21:51:20 +0100
commit7ec77f42f45fb3b3479818636943923b9416a170 (patch)
tree33f608b06d865285fb6ef1eaf752ae77cbb16a17 /src/libSystem/SystemKit/System.h
parent465a99f17f9e8f56813f225f09a6a1a498be9deb (diff)
chore: {kernel, launch, libSystem}: Implementation and WiP improvements.v0.1.211
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/libSystem/SystemKit/System.h')
-rw-r--r--src/libSystem/SystemKit/System.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/libSystem/SystemKit/System.h b/src/libSystem/SystemKit/System.h
index a8cf05f2..2360b611 100644
--- a/src/libSystem/SystemKit/System.h
+++ b/src/libSystem/SystemKit/System.h
@@ -2,14 +2,18 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/nekernel-org/nekernel
-#ifndef LIBSYS_SYSTEM_CALLS_H
-#define LIBSYS_SYSTEM_CALLS_H
+#ifndef SYSTEMKIT_SYSTEM_H
+#define SYSTEMKIT_SYSTEM_H
#include <libSystem/SystemKit/Macros.h>
/// @brief TTY device path.
-#define kPrintDevicePath "/devices/tty{}"
-#define kCDDevicePath "/devices/dvd{}"
+#define kPrintDevicePath "/devices/tty{}{}"
+
+/// @brief Secure TTY device path.
+#define kSecurePrintDevicePath "/devices/stty{}{}"
+
+#define kCDDevicePath "/devices/dvd{}{}"
// ------------------------------------------------------------------------------------------ //
/// @brief Types API.
@@ -383,4 +387,4 @@ IMPORT_C Char* StrFmt(const Char* fmt, ...);
IMPORT_C UInt64 StrMathToNumber(const Char* in, const Char** endp, const SInt16 base);
-#endif // ifndef LIBSYS_SYSTEM_CALLS_H
+#endif // ifndef SYSTEMKIT_SYSTEM_H