vcomp: Better stub for omp_get_max_threads.
This commit is contained in:
parent
54a10eb1aa
commit
ed23241733
|
@ -29,6 +29,12 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(vcomp);
|
||||
|
||||
int CDECL omp_get_max_threads(void)
|
||||
{
|
||||
TRACE("stub\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
int CDECL omp_get_num_procs(void)
|
||||
{
|
||||
TRACE("stub\n");
|
||||
|
|
|
@ -91,7 +91,7 @@
|
|||
@ stub omp_destroy_lock
|
||||
@ stub omp_destroy_nest_lock
|
||||
@ stub omp_get_dynamic
|
||||
@ stub omp_get_max_threads
|
||||
@ cdecl omp_get_max_threads()
|
||||
@ stub omp_get_nested
|
||||
@ cdecl omp_get_num_procs()
|
||||
@ cdecl omp_get_num_threads()
|
||||
|
|
Loading…
Reference in New Issue