1 /* Copyright (C) 2006-2018 Free Software Foundation, Inc.
2 Contributed by Jakub Jelinek <jakub@redhat.com>.
4 This file is part of the GNU Offloading and Multi Processing Library
7 Libgomp is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 /* This is a generic stub implementation of a CPU affinity setting. */
31 gomp_init_affinity (void)
35 #ifdef LIBGOMP_USE_PTHREADS
37 gomp_init_thread_affinity (pthread_attr_t
*attr
, unsigned int place
)
45 gomp_affinity_alloc (unsigned long count
, bool quiet
)
49 gomp_error ("Affinity not supported on this configuration");
54 gomp_affinity_init_place (void *p
)
60 gomp_affinity_add_cpus (void *p
, unsigned long num
,
61 unsigned long len
, long stride
, bool quiet
)
72 gomp_affinity_remove_cpu (void *p
, unsigned long num
)
80 gomp_affinity_copy_place (void *p
, void *q
, long stride
)
89 gomp_affinity_same_place (void *p
, void *q
)
97 gomp_affinity_finalize_place_list (bool quiet
)
104 gomp_affinity_init_level (int level
, unsigned long count
, bool quiet
)
110 gomp_error ("Affinity not supported on this configuration");
115 gomp_affinity_print_place (void *p
)
121 omp_get_place_num_procs (int place_num
)
128 omp_get_place_proc_ids (int place_num
, int *ids
)
135 gomp_get_place_proc_ids_8 (int place_num
, int64_t *ids
)
141 ialias(omp_get_place_num_procs
)
142 ialias(omp_get_place_proc_ids
)