mirror of git://gcc.gnu.org/git/gcc.git
proc.h: New.
* config/linux/proc.h: New. * config/linux/proc.c: Include "proc.h". Do not include <sched.h>. (gomp_cpuset_popcount): Rename from cpuset_popcount. No more static. (gomp_init_num_threads): Update call to cpuset_popcount. (get_num_procs): Ditto. * config/linux/affinity.c (gomp_init_affinity): Call gomp_cpuset_popcount. From-SVN: r177265
This commit is contained in:
parent
e280f98126
commit
e0b23d9fd3
|
@ -1,3 +1,13 @@
|
||||||
|
2011-08-03 Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
|
* config/linux/proc.h: New.
|
||||||
|
* config/linux/proc.c: Include "proc.h". Do not include <sched.h>.
|
||||||
|
(gomp_cpuset_popcount): Rename from cpuset_popcount. No more static.
|
||||||
|
(gomp_init_num_threads): Update call to cpuset_popcount.
|
||||||
|
(get_num_procs): Ditto.
|
||||||
|
* config/linux/affinity.c (gomp_init_affinity): Call
|
||||||
|
gomp_cpuset_popcount.
|
||||||
|
|
||||||
2011-08-02 Jakub Jelinek <jakub@redhat.com>
|
2011-08-02 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR fortran/42041
|
PR fortran/42041
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
#define _GNU_SOURCE 1
|
#define _GNU_SOURCE 1
|
||||||
#endif
|
#endif
|
||||||
#include "libgomp.h"
|
#include "libgomp.h"
|
||||||
#include <sched.h>
|
#include "proc.h"
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ gomp_init_affinity (void)
|
||||||
CPU_ZERO (&cpusetnew);
|
CPU_ZERO (&cpusetnew);
|
||||||
if (gomp_cpu_affinity_len == 0)
|
if (gomp_cpu_affinity_len == 0)
|
||||||
{
|
{
|
||||||
unsigned long count = CPU_COUNT (&cpuset);
|
unsigned long count = gomp_cpuset_popcount (&cpuset);
|
||||||
if (count >= 65536)
|
if (count >= 65536)
|
||||||
count = 65536;
|
count = 65536;
|
||||||
gomp_cpu_affinity = malloc (count * sizeof (unsigned short));
|
gomp_cpu_affinity = malloc (count * sizeof (unsigned short));
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#define _GNU_SOURCE 1
|
#define _GNU_SOURCE 1
|
||||||
#endif
|
#endif
|
||||||
#include "libgomp.h"
|
#include "libgomp.h"
|
||||||
#include <sched.h>
|
#include "proc.h"
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#ifdef HAVE_GETLOADAVG
|
#ifdef HAVE_GETLOADAVG
|
||||||
|
@ -40,8 +40,8 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_PTHREAD_AFFINITY_NP
|
#ifdef HAVE_PTHREAD_AFFINITY_NP
|
||||||
static unsigned long
|
unsigned long
|
||||||
cpuset_popcount (cpu_set_t *cpusetp)
|
gomp_cpuset_popcount (cpu_set_t *cpusetp)
|
||||||
{
|
{
|
||||||
#ifdef CPU_COUNT
|
#ifdef CPU_COUNT
|
||||||
/* glibc 2.6 and above provide a macro for this. */
|
/* glibc 2.6 and above provide a macro for this. */
|
||||||
|
@ -76,7 +76,7 @@ gomp_init_num_threads (void)
|
||||||
if (pthread_getaffinity_np (pthread_self (), sizeof (cpuset), &cpuset) == 0)
|
if (pthread_getaffinity_np (pthread_self (), sizeof (cpuset), &cpuset) == 0)
|
||||||
{
|
{
|
||||||
/* Count only the CPUs this process can use. */
|
/* Count only the CPUs this process can use. */
|
||||||
gomp_global_icv.nthreads_var = cpuset_popcount (&cpuset);
|
gomp_global_icv.nthreads_var = gomp_cpuset_popcount (&cpuset);
|
||||||
if (gomp_global_icv.nthreads_var == 0)
|
if (gomp_global_icv.nthreads_var == 0)
|
||||||
gomp_global_icv.nthreads_var = 1;
|
gomp_global_icv.nthreads_var = 1;
|
||||||
return;
|
return;
|
||||||
|
@ -99,7 +99,7 @@ get_num_procs (void)
|
||||||
if (pthread_getaffinity_np (pthread_self (), sizeof (cpuset),
|
if (pthread_getaffinity_np (pthread_self (), sizeof (cpuset),
|
||||||
&cpuset) == 0)
|
&cpuset) == 0)
|
||||||
{
|
{
|
||||||
int ret = cpuset_popcount (&cpuset);
|
int ret = gomp_cpuset_popcount (&cpuset);
|
||||||
return ret != 0 ? ret : 1;
|
return ret != 0 ? ret : 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
/* Copyright (C) 2011 Free Software Foundation, Inc.
|
||||||
|
Contributed by Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
|
This file is part of the GNU OpenMP Library (libgomp).
|
||||||
|
|
||||||
|
Libgomp is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 3, or (at your option)
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
|
more details.
|
||||||
|
|
||||||
|
Under Section 7 of GPL version 3, you are granted additional
|
||||||
|
permissions described in the GCC Runtime Library Exception, version
|
||||||
|
3.1, as published by the Free Software Foundation.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License and
|
||||||
|
a copy of the GCC Runtime Library Exception along with this program;
|
||||||
|
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
||||||
|
<http://www.gnu.org/licenses/>. */
|
||||||
|
|
||||||
|
#ifndef GOMP_PROC_H
|
||||||
|
#define GOMP_PROC_H 1
|
||||||
|
|
||||||
|
#include <sched.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_PTHREAD_AFFINITY_NP
|
||||||
|
extern unsigned long gomp_cpuset_popcount (cpu_set_t *);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* GOMP_PROC_H */
|
Loading…
Reference in New Issue