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
15b59d75
Commit
15b59d75
authored
Sep 29, 2012
by
Dan Kegel
Committed by
Alexandre Julliard
Oct 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vcomp: Better stubs for omp_get_nested, omp_set_nested.
parent
d58ade2d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
main.c
dlls/vcomp/main.c
+11
-0
vcomp.spec
dlls/vcomp/vcomp.spec
+2
-2
No files found.
dlls/vcomp/main.c
View file @
15b59d75
...
...
@@ -41,6 +41,12 @@ int CDECL omp_get_max_threads(void)
return
1
;
}
int
CDECL
omp_get_nested
(
void
)
{
TRACE
(
"stub
\n
"
);
return
0
;
}
int
CDECL
omp_get_num_procs
(
void
)
{
TRACE
(
"stub
\n
"
);
...
...
@@ -64,6 +70,11 @@ void CDECL omp_set_dynamic(int val)
TRACE
(
"(%d): stub
\n
"
,
val
);
}
void
CDECL
omp_set_nested
(
int
nested
)
{
TRACE
(
"(%d): stub
\n
"
,
nested
);
}
void
CDECL
omp_set_num_threads
(
int
num_threads
)
{
TRACE
(
"(%d): stub
\n
"
,
num_threads
);
...
...
dlls/vcomp/vcomp.spec
View file @
15b59d75
...
...
@@ -92,7 +92,7 @@
@ stub omp_destroy_nest_lock
@ cdecl omp_get_dynamic()
@ cdecl omp_get_max_threads()
@
stub omp_get_nested
@
cdecl omp_get_nested()
@ cdecl omp_get_num_procs()
@ cdecl omp_get_num_threads()
@ stub omp_get_thread_num
...
...
@@ -104,7 +104,7 @@
@ cdecl omp_set_dynamic(long)
@ stub omp_set_lock
@ stub omp_set_nest_lock
@
stub omp_set_nested
@
cdecl omp_set_nested(long)
@ cdecl omp_set_num_threads(long)
@ stub omp_test_lock
@ stub omp_test_nest_lock
...
...
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