Rename MutantObject to MutexObject
Some checks failed
Builds / ExectOS (amd64, release) (push) Failing after 25s
Builds / ExectOS (i686, debug) (push) Failing after 25s
Builds / ExectOS (amd64, debug) (push) Failing after 36s
Builds / ExectOS (i686, release) (push) Failing after 32s

This commit is contained in:
2026-06-28 19:05:36 +02:00
parent 42d6426318
commit 6e4f9dd5b1

View File

@@ -133,7 +133,7 @@ typedef enum _KOBJECTS
{ {
EventNotificationObject = 0, EventNotificationObject = 0,
EventSynchronizationObject = 1, EventSynchronizationObject = 1,
MutantObject = 2, MutexObject = 2,
ProcessObject = 3, ProcessObject = 3,
QueueObject = 4, QueueObject = 4,
SemaphoreObject = 5, SemaphoreObject = 5,
@@ -618,7 +618,7 @@ typedef struct _KSHARED_DATA
typedef struct _KTHREAD typedef struct _KTHREAD
{ {
DISPATCHER_HEADER Header; DISPATCHER_HEADER Header;
LIST_ENTRY MutantListHead; LIST_ENTRY MutexListHead;
PVOID InitialStack; PVOID InitialStack;
PVOID KernelStack; PVOID KernelStack;
PVOID StackBase; PVOID StackBase;