vcomp: Implement omp_{get,set}_nested.

This commit is contained in:
Sebastian Lackner 2015-07-14 21:39:46 +02:00 committed by Alexandre Julliard
parent 4dea3e071d
commit 800ca050df
1 changed files with 4 additions and 2 deletions

View File

@ -31,6 +31,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(vcomp);
static int vcomp_max_threads;
static int vcomp_num_threads;
static BOOL vcomp_nested_fork = FALSE;
int CDECL omp_get_dynamic(void)
{
@ -47,7 +48,7 @@ int CDECL omp_get_max_threads(void)
int CDECL omp_get_nested(void)
{
TRACE("stub\n");
return 0;
return vcomp_nested_fork;
}
int CDECL omp_get_num_procs(void)
@ -81,7 +82,8 @@ void CDECL omp_set_dynamic(int val)
void CDECL omp_set_nested(int nested)
{
TRACE("(%d): stub\n", nested);
TRACE("(%d)\n", nested);
vcomp_nested_fork = (nested != 0);
}
void CDECL omp_set_num_threads(int num_threads)