diff options
Diffstat (limited to 'libgomp/env.c')
-rw-r--r-- | libgomp/env.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libgomp/env.c b/libgomp/env.c index 38903c7..7eb895f 100644 --- a/libgomp/env.c +++ b/libgomp/env.c @@ -701,6 +701,11 @@ parse_places_var (const char *name, bool ignore) env += 9; level = 4; } + else if (strncasecmp (env, "numa_domains", 12) == 0) + { + env += 12; + level = 5; + } if (level) { count = ULONG_MAX; |