Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
eff57ac9
Commit
eff57ac9
authored
Aug 18, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 18, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Rename scheduler.c file to concurrency.c.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6c4cddc4
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
11 deletions
+11
-11
Makefile.in
dlls/msvcr100/Makefile.in
+1
-1
Makefile.in
dlls/msvcr110/Makefile.in
+1
-1
Makefile.in
dlls/msvcr120/Makefile.in
+1
-1
Makefile.in
dlls/msvcrt/Makefile.in
+1
-1
concurrency.c
dlls/msvcrt/concurrency.c
+3
-3
main.c
dlls/msvcrt/main.c
+2
-2
msvcrt.h
dlls/msvcrt/msvcrt.h
+2
-2
No files found.
dlls/msvcr100/Makefile.in
View file @
eff57ac9
...
...
@@ -7,6 +7,7 @@ PARENTSRC = ../msvcrt
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
concurrency.c
\
console.c
\
cpp.c
\
ctype.c
\
...
...
@@ -33,7 +34,6 @@ C_SRCS = \
onexit.c
\
process.c
\
scanf.c
\
scheduler.c
\
sincos.c
\
string.c
\
thread.c
\
...
...
dlls/msvcr110/Makefile.in
View file @
eff57ac9
...
...
@@ -7,6 +7,7 @@ PARENTSRC = ../msvcrt
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
concurrency.c
\
console.c
\
cpp.c
\
ctype.c
\
...
...
@@ -33,7 +34,6 @@ C_SRCS = \
onexit.c
\
process.c
\
scanf.c
\
scheduler.c
\
sincos.c
\
string.c
\
thread.c
\
...
...
dlls/msvcr120/Makefile.in
View file @
eff57ac9
...
...
@@ -7,6 +7,7 @@ PARENTSRC = ../msvcrt
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
concurrency.c
\
console.c
\
cpp.c
\
ctype.c
\
...
...
@@ -33,7 +34,6 @@ C_SRCS = \
onexit.c
\
process.c
\
scanf.c
\
scheduler.c
\
sincos.c
\
string.c
\
thread.c
\
...
...
dlls/msvcrt/Makefile.in
View file @
eff57ac9
...
...
@@ -6,6 +6,7 @@ DELAYIMPORTS = advapi32 user32
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
concurrency.c
\
console.c
\
cpp.c
\
crt_gccmain.c
\
...
...
@@ -37,7 +38,6 @@ C_SRCS = \
onexit.c
\
process.c
\
scanf.c
\
scheduler.c
\
sincos.c
\
string.c
\
thread.c
\
...
...
dlls/msvcrt/
scheduler
.c
→
dlls/msvcrt/
concurrency
.c
View file @
eff57ac9
/*
*
msvcrt.dll C++ objects
*
Concurrency namespace implementation
*
* Copyright 2017 Piotr Caban
*
...
...
@@ -1136,7 +1136,7 @@ __ASM_BLOCK_BEGIN(scheduler_vtables)
);
__ASM_BLOCK_END
void
msvcrt_init_
scheduler
(
void
*
base
)
void
msvcrt_init_
concurrency
(
void
*
base
)
{
#ifdef __x86_64__
init_Context_rtti
(
base
);
...
...
@@ -1148,7 +1148,7 @@ void msvcrt_init_scheduler(void *base)
#endif
}
void
msvcrt_free_
scheduler
(
void
)
void
msvcrt_free_
concurrency
(
void
)
{
if
(
context_tls_index
!=
TLS_OUT_OF_INDEXES
)
TlsFree
(
context_tls_index
);
...
...
dlls/msvcrt/main.c
View file @
eff57ac9
...
...
@@ -116,7 +116,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
msvcrt_init_args
();
msvcrt_init_signals
();
#if _MSVCR_VER >= 100 && _MSVCR_VER <= 120
msvcrt_init_
scheduler
(
hinstDLL
);
msvcrt_init_
concurrency
(
hinstDLL
);
#endif
#if _MSVCR_VER == 0
/* don't allow unloading msvcrt, we can't setup file handles twice */
...
...
@@ -143,7 +143,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
_free_locale
(
MSVCRT_locale
);
#if _MSVCR_VER >= 100 && _MSVCR_VER <= 120
msvcrt_free_scheduler_thread
();
msvcrt_free_
scheduler
();
msvcrt_free_
concurrency
();
#endif
msvcrt_destroy_heap
();
TRACE
(
"finished process free
\n
"
);
...
...
dlls/msvcrt/msvcrt.h
View file @
eff57ac9
...
...
@@ -245,8 +245,8 @@ extern void msvcrt_destroy_heap(void) DECLSPEC_HIDDEN;
extern
void
msvcrt_init_clock
(
void
)
DECLSPEC_HIDDEN
;
#if _MSVCR_VER >= 100
extern
void
msvcrt_init_
scheduler
(
void
*
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_free_
scheduler
(
void
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_init_
concurrency
(
void
*
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_free_
concurrency
(
void
)
DECLSPEC_HIDDEN
;
extern
void
msvcrt_free_scheduler_thread
(
void
)
DECLSPEC_HIDDEN
;
#endif
...
...
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