gcc50: Disconnect from buildworld.
[dragonfly.git] / contrib / gcc-5.0 / libgomp / config / posix / affinity.c
1 /* Copyright (C) 2006-2015 Free Software Foundation, Inc.
2    Contributed by Jakub Jelinek <jakub@redhat.com>.
3
4    This file is part of the GNU Offloading and Multi Processing Library
5    (libgomp).
6
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)
10    any later version.
11
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
15    more details.
16
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.
20
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/>.  */
25
26 /* This is a generic stub implementation of a CPU affinity setting.  */
27
28 #include "libgomp.h"
29
30 void
31 gomp_init_affinity (void)
32 {
33 }
34
35 void
36 gomp_init_thread_affinity (pthread_attr_t *attr, unsigned int place)
37 {
38   (void) attr;
39   (void) place;
40 }
41
42 void **
43 gomp_affinity_alloc (unsigned long count, bool quiet)
44 {
45   (void) count;
46   if (!quiet)
47     gomp_error ("Affinity not supported on this configuration");
48   return NULL;
49 }
50
51 void
52 gomp_affinity_init_place (void *p)
53 {
54   (void) p;
55 }
56
57 bool
58 gomp_affinity_add_cpus (void *p, unsigned long num,
59                         unsigned long len, long stride, bool quiet)
60 {
61   (void) p;
62   (void) num;
63   (void) len;
64   (void) stride;
65   (void) quiet;
66   return false;
67 }
68
69 bool
70 gomp_affinity_remove_cpu (void *p, unsigned long num)
71 {
72   (void) p;
73   (void) num;
74   return false;
75 }
76
77 bool
78 gomp_affinity_copy_place (void *p, void *q, long stride)
79 {
80   (void) p;
81   (void) q;
82   (void) stride;
83   return false;
84 }
85
86 bool
87 gomp_affinity_same_place (void *p, void *q)
88 {
89   (void) p;
90   (void) q;
91   return false;
92 }
93
94 bool
95 gomp_affinity_finalize_place_list (bool quiet)
96 {
97   (void) quiet;
98   return false;
99 }
100
101 bool
102 gomp_affinity_init_level (int level, unsigned long count, bool quiet)
103 {
104   (void) level;
105   (void) count;
106   (void) quiet;
107   if (!quiet)
108     gomp_error ("Affinity not supported on this configuration");
109   return NULL;
110 }
111
112 void
113 gomp_affinity_print_place (void *p)
114 {
115   (void) p;
116 }