Removed DUSK_ prefix

This commit is contained in:
2025-08-23 10:13:49 -05:00
parent 1bf6fe6eaf
commit 1dfde00317
28 changed files with 148 additions and 101 deletions

View File

@@ -27,7 +27,7 @@ void consoleInit() {
consolePrint(" = Dawn Console = ");
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
threadInit(&CONSOLE.thread, consoleInputThread);
threadMutexInit(&CONSOLE.execMutex);
threadStartRequest(&CONSOLE.thread);
@@ -75,7 +75,7 @@ void consolePrint(const char_t *message, ...) {
}
void consoleExec(const char_t *line) {
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
threadMutexLock(&CONSOLE.execMutex);
#endif
@@ -279,13 +279,13 @@ void consoleExec(const char_t *line) {
}
}
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
threadMutexUnlock(&CONSOLE.execMutex);
#endif
}
void consoleUpdate() {
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
threadMutexLock(&CONSOLE.execMutex);
#endif
@@ -298,13 +298,13 @@ void consoleUpdate() {
// Clear the exec buffer
CONSOLE.execBufferCount = 0;
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
threadMutexUnlock(&CONSOLE.execMutex);
#endif
}
void consoleDispose(void) {
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
threadStop(&CONSOLE.thread);
threadMutexDispose(&CONSOLE.execMutex);
#endif
@@ -312,7 +312,7 @@ void consoleDispose(void) {
consolePrint(" = Console shutting down = ");
}
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
void consoleInputThread(thread_t *thread) {
assertNotNull(thread, "Thread cannot be NULL.");
@@ -325,7 +325,7 @@ void consoleDispose(void) {
};
while(!threadShouldStop(thread) && ENGINE.running) {
int32_t rc = poll(&pfd, 1, DUSK_CONSOLE_POSIX_POLL_RATE);
int32_t rc = poll(&pfd, 1, CONSOLE_POSIX_POLL_RATE);
if(rc == 0) continue;
if(rc < 0) {