From: Alex Rousskov Date: Thu, 23 Sep 2010 19:58:30 +0000 (-0600) Subject: Fixed the profile of the CPU_SET fake replacement. X-Git-Tag: take1~230 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e211e7c7bfc9cd5cf2bcd67fd7090efff79da89;p=thirdparty%2Fsquid.git Fixed the profile of the CPU_SET fake replacement. --- diff --git a/compat/cpu.h b/compat/cpu.h index 37bcdf5399..ed25febde7 100644 --- a/compat/cpu.h +++ b/compat/cpu.h @@ -61,7 +61,7 @@ typedef struct #define CPU_COUNT(set) 0 #define CPU_AND(destset, srcset1, srcset2) (void)0 #define CPU_ZERO(set) (void)0 -#define CPU_SET(set) (void)0 +#define CPU_SET(cpu, set) (void)0 inline int sched_setaffinity(int, size_t, cpu_set_t *) { return ENOTSUP; } inline int sched_getaffinity(int, size_t, cpu_set_t *) { return ENOTSUP; }