From ab4223e9cffbc21399c0468dd89a2e57122fbfee Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Tue, 14 Sep 2010 15:21:49 +0530 Subject: cpu: Add CPU information to pa_core This retains CPU information (processor type and supported features) in pa_core, so that this information can be used by modules at init time to figure out what optimisations may be used. --- src/pulsecore/cpu-x86.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/pulsecore/cpu-x86.h') diff --git a/src/pulsecore/cpu-x86.h b/src/pulsecore/cpu-x86.h index 285c2031..0045ef6d 100644 --- a/src/pulsecore/cpu-x86.h +++ b/src/pulsecore/cpu-x86.h @@ -24,6 +24,7 @@ ***/ #include +#include typedef enum pa_cpu_x86_flag { PA_CPU_X86_MMX = (1 << 0), @@ -39,7 +40,7 @@ typedef enum pa_cpu_x86_flag { PA_CPU_X86_CMOV = (1 << 10) } pa_cpu_x86_flag_t; -void pa_cpu_init_x86 (void); +pa_bool_t pa_cpu_init_x86 (pa_cpu_x86_flag_t *flags); #if defined (__i386__) typedef int32_t pa_reg_x86; -- cgit