Commit 15b59d75 authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

vcomp: Better stubs for omp_get_nested, omp_set_nested.

parent d58ade2d
......@@ -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);
......
......@@ -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
......
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