mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
Move cpu_map structure outside of the global struct to a global variable defined in cpuset.c compilation unit. This allows to reorganize the includes without having to define _GNU_SOURCE everywhere for the support of the cpu_set_t. This fixes the compilation with musl libc, most notably used for the alpine based docker image. This fixes the github issue #1235. No need to backport as this feature is new in the current 2.4-dev.
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
#ifndef _HAPROXY_CPUSET_T_H
|
|
#define _HAPROXY_CPUSET_T_H
|
|
|
|
#define _GNU_SOURCE
|
|
#include <sched.h>
|
|
|
|
#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__)
|
|
#include <sys/param.h>
|
|
#ifdef __FreeBSD__
|
|
#include <sys/_cpuset.h>
|
|
#include <sys/cpuset.h>
|
|
#endif
|
|
#endif
|
|
|
|
#include <haproxy/api-t.h>
|
|
|
|
#if defined(__linux__) || defined(__DragonFly__)
|
|
|
|
# define CPUSET_REPR cpu_set_t
|
|
# define CPUSET_USE_CPUSET
|
|
|
|
#elif defined(__FreeBSD__) || defined(__NetBSD__)
|
|
|
|
# define CPUSET_REPR cpuset_t
|
|
# define CPUSET_USE_FREEBSD_CPUSET
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
# define CPUSET_REPR unsigned long
|
|
# define CPUSET_USE_ULONG
|
|
|
|
#else
|
|
|
|
# error "No cpuset support implemented on this platform"
|
|
|
|
#endif
|
|
|
|
struct hap_cpuset {
|
|
CPUSET_REPR cpuset;
|
|
};
|
|
|
|
struct cpu_map {
|
|
struct hap_cpuset proc[MAX_PROCS]; /* list of CPU masks for the 32/64 first processes */
|
|
struct hap_cpuset proc_t1[MAX_PROCS]; /* list of CPU masks for the 1st thread of each process */
|
|
struct hap_cpuset thread[MAX_THREADS]; /* list of CPU masks for the 32/64 first threads of the 1st process */
|
|
};
|
|
|
|
#endif /* _HAPROXY_CPUSET_T_H */
|