From 353f0bf39d238ebd473a413d09d78d850b8f4684 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Tue, 19 Apr 2005 17:13:34 +0000 Subject: [PATCH] use anonymous events for synchronization svn path=/trunk/; revision=14704 --- reactos/subsys/system/taskmgr/applpage.c | 2 +- reactos/subsys/system/taskmgr/perfpage.c | 2 +- reactos/subsys/system/taskmgr/procpage.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/subsys/system/taskmgr/applpage.c b/reactos/subsys/system/taskmgr/applpage.c index ee547ceb86d..06bcb0d9274 100644 --- a/reactos/subsys/system/taskmgr/applpage.c +++ b/reactos/subsys/system/taskmgr/applpage.c @@ -213,7 +213,7 @@ void UpdateApplicationListControlViewSetting(void) DWORD WINAPI ApplicationPageRefreshThread(void *lpParameter) { /* Create the event */ - hApplicationPageEvent = CreateEvent(NULL, TRUE, TRUE, _T("Application Page Event")); + hApplicationPageEvent = CreateEvent(NULL, TRUE, TRUE, NULL); /* If we couldn't create the event then exit the thread */ if (!hApplicationPageEvent) diff --git a/reactos/subsys/system/taskmgr/perfpage.c b/reactos/subsys/system/taskmgr/perfpage.c index b3e9a12dc07..d60f164ab0b 100644 --- a/reactos/subsys/system/taskmgr/perfpage.c +++ b/reactos/subsys/system/taskmgr/perfpage.c @@ -320,7 +320,7 @@ DWORD WINAPI PerformancePageRefreshThread(void *lpParameter) TCHAR Text[260]; /* Create the event */ - hPerformancePageEvent = CreateEvent(NULL, TRUE, TRUE, _T("Performance Page Event")); + hPerformancePageEvent = CreateEvent(NULL, TRUE, TRUE, NULL); /* If we couldn't create the event then exit the thread */ if (!hPerformancePageEvent) diff --git a/reactos/subsys/system/taskmgr/procpage.c b/reactos/subsys/system/taskmgr/procpage.c index 1e1d8e9c5f7..99e9dd13c5f 100644 --- a/reactos/subsys/system/taskmgr/procpage.c +++ b/reactos/subsys/system/taskmgr/procpage.c @@ -492,7 +492,7 @@ DWORD WINAPI ProcessPageRefreshThread(void *lpParameter) ULONG OldProcessCount = 0; /* Create the event */ - hProcessPageEvent = CreateEvent(NULL, TRUE, TRUE, _T("Process Page Event")); + hProcessPageEvent = CreateEvent(NULL, TRUE, TRUE, NULL); /* If we couldn't create the event then exit the thread */ if (!hProcessPageEvent)