1 /* Copyright (C) 2005 Free Software Foundation, Inc.
2 Contributed by Richard Henderson <rth@redhat.com>.
4 This file is part of the GNU OpenMP Library (libgomp).
6 Libgomp is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
11 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
16 You should have received a copy of the GNU Lesser General Public License
17 along with libgomp; see the file COPYING.LIB. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 MA 02110-1301, USA. */
21 /* As a special exception, if you link this library with other files, some
22 of which are compiled with GCC, to produce an executable, this library
23 does not by itself cause the resulting executable to be covered by the
24 GNU General Public License. This exception does not however invalidate
25 any other reasons why the executable file might be covered by the GNU
26 General Public License. */
28 /* This file defines the OpenMP internal control variables, and arranges
29 for them to be initialized from environment variables at startup. */
32 #include "libgomp_f.h"
39 unsigned long gomp_nthreads_var
= 1;
40 bool gomp_dyn_var
= false;
41 bool gomp_nest_var
= false;
42 enum gomp_schedule_type gomp_run_sched_var
= GFS_DYNAMIC
;
43 unsigned long gomp_run_sched_chunk
= 1;
45 /* Parse the OMP_SCHEDULE environment variable. */
52 env
= getenv ("OMP_SCHEDULE");
56 if (strncmp (env
, "static", 6) == 0)
58 gomp_run_sched_var
= GFS_STATIC
;
61 else if (strncmp (env
, "dynamic", 7) == 0)
63 gomp_run_sched_var
= GFS_DYNAMIC
;
66 else if (strncmp (env
, "guided", 6) == 0)
68 gomp_run_sched_var
= GFS_GUIDED
;
76 if (*env
!= ' ' && *env
!= ',')
87 gomp_run_sched_chunk
= strtoul (env
, &end
, 10);
93 gomp_error ("Unknown value for environment variable OMP_SCHEDULE");
97 gomp_error ("Invalid value for chunk size in "
98 "environment variable OMP_SCHEDULE");
99 gomp_run_sched_chunk
= 1;
103 /* Parse an unsigned long environment varible. Return true if one was
104 present and it was successfully parsed. */
107 parse_unsigned_long (const char *name
, unsigned long *pvalue
)
119 value
= strtoul (env
, &end
, 10);
127 gomp_error ("Invalid value for environment variable %s", name
);
131 /* Parse a boolean value for environment variable NAME and store the
135 parse_boolean (const char *name
, bool *value
)
143 if (strcmp (env
, "true") == 0)
145 else if (strcmp (env
, "false") == 0)
148 gomp_error ("Invalid value for environment variable %s", name
);
151 static void __attribute__((constructor
))
152 initialize_env (void)
154 unsigned long stacksize
;
156 /* Do a compile time check that mkomp_h.pl did good job. */
157 omp_check_defines ();
160 parse_boolean ("OMP_DYNAMIC", &gomp_dyn_var
);
161 parse_boolean ("OMP_NESTED", &gomp_nest_var
);
162 if (!parse_unsigned_long ("OMP_NUM_THREADS", &gomp_nthreads_var
))
163 gomp_init_num_threads ();
165 /* Not strictly environment related, but ordering constructors is tricky. */
166 pthread_attr_init (&gomp_thread_attr
);
167 pthread_attr_setdetachstate (&gomp_thread_attr
, PTHREAD_CREATE_DETACHED
);
169 if (parse_unsigned_long ("GOMP_STACKSIZE", &stacksize
))
174 err
= pthread_attr_setstacksize (&gomp_thread_attr
, stacksize
);
176 #ifdef PTHREAD_STACK_MIN
179 if (stacksize
< PTHREAD_STACK_MIN
)
180 gomp_error ("Stack size less than minimum of %luk",
181 PTHREAD_STACK_MIN
/ 1024ul
182 + (PTHREAD_STACK_MIN
% 1024 != 0));
184 gomp_error ("Stack size larger than system limit");
189 gomp_error ("Stack size change failed: %s", strerror (err
));
194 /* The public OpenMP API routines that access these variables. */
197 omp_set_num_threads (int n
)
199 gomp_nthreads_var
= n
;
203 omp_set_dynamic (int val
)
209 omp_get_dynamic (void)
215 omp_set_nested (int val
)
221 omp_get_nested (void)
223 return gomp_nest_var
;
226 ialias (omp_set_dynamic
)
227 ialias (omp_set_nested
)
228 ialias (omp_set_num_threads
)
229 ialias (omp_get_dynamic
)
230 ialias (omp_get_nested
)