Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
53a0c300
Commit
53a0c300
authored
Sep 14, 2005
by
Thomas Weidenmueller
Committed by
Alexandre Julliard
Sep 14, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use anonymous events for synchronization.
parent
5f1b258c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
applpage.c
programs/taskmgr/applpage.c
+1
-1
perfpage.c
programs/taskmgr/perfpage.c
+1
-1
procpage.c
programs/taskmgr/procpage.c
+1
-1
No files found.
programs/taskmgr/applpage.c
View file @
53a0c300
...
...
@@ -220,7 +220,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
)
...
...
programs/taskmgr/perfpage.c
View file @
53a0c300
...
...
@@ -333,7 +333,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
)
...
...
programs/taskmgr/procpage.c
View file @
53a0c300
...
...
@@ -495,7 +495,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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment