Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
53a0c300
Commit
53a0c300
authored
19 years ago
by
Thomas Weidenmüller
Committed by
Alexandre Julliard
19 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Use anonymous events for synchronization.
parent
5f1b258c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
programs/taskmgr/applpage.c
+1
-1
1 addition, 1 deletion
programs/taskmgr/applpage.c
programs/taskmgr/perfpage.c
+1
-1
1 addition, 1 deletion
programs/taskmgr/perfpage.c
programs/taskmgr/procpage.c
+1
-1
1 addition, 1 deletion
programs/taskmgr/procpage.c
with
3 additions
and
3 deletions
programs/taskmgr/applpage.c
+
1
−
1
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
)
...
...
This diff is collapsed.
Click to expand it.
programs/taskmgr/perfpage.c
+
1
−
1
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
)
...
...
This diff is collapsed.
Click to expand it.
programs/taskmgr/procpage.c
+
1
−
1
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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment