Commit ed232417 authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

vcomp: Better stub for omp_get_max_threads.

parent 54a10eb1
...@@ -29,6 +29,12 @@ ...@@ -29,6 +29,12 @@
WINE_DEFAULT_DEBUG_CHANNEL(vcomp); WINE_DEFAULT_DEBUG_CHANNEL(vcomp);
int CDECL omp_get_max_threads(void)
{
TRACE("stub\n");
return 1;
}
int CDECL omp_get_num_procs(void) int CDECL omp_get_num_procs(void)
{ {
TRACE("stub\n"); TRACE("stub\n");
......
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
@ stub omp_destroy_lock @ stub omp_destroy_lock
@ stub omp_destroy_nest_lock @ stub omp_destroy_nest_lock
@ stub omp_get_dynamic @ stub omp_get_dynamic
@ stub omp_get_max_threads @ cdecl omp_get_max_threads()
@ stub omp_get_nested @ stub omp_get_nested
@ cdecl omp_get_num_procs() @ cdecl omp_get_num_procs()
@ cdecl omp_get_num_threads() @ cdecl omp_get_num_threads()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment