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.
This commit is contained in:
Arun Raghavan 2010-09-14 15:21:49 +05:30
parent ffcf3c8a6c
commit ab4223e9cf
8 changed files with 119 additions and 55 deletions

View file

@ -24,6 +24,7 @@
***/
#include <stdint.h>
#include <pulsecore/macro.h>
typedef enum pa_cpu_arm_flag {
PA_CPU_ARM_V6 = (1 << 0),
@ -34,7 +35,7 @@ typedef enum pa_cpu_arm_flag {
PA_CPU_ARM_VFPV3 = (1 << 5)
} pa_cpu_arm_flag_t;
void pa_cpu_init_arm (void);
pa_bool_t pa_cpu_init_arm (pa_cpu_arm_flag_t *flags);
/* some optimized functions */
void pa_volume_func_init_arm(pa_cpu_arm_flag_t flags);