This is probably a typo, the macro defined on 386 systems is named __i386__, not _i386__
Signed-off-by: Jiri Palecek <[email protected]> --- .../sched/hyperthreading/ht_affinity/HTutils.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/testcases/kernel/sched/hyperthreading/ht_affinity/HTutils.c b/testcases/kernel/sched/hyperthreading/ht_affinity/HTutils.c index 5f37d1f..9d6e1c0 100644 --- a/testcases/kernel/sched/hyperthreading/ht_affinity/HTutils.c +++ b/testcases/kernel/sched/hyperthreading/ht_affinity/HTutils.c @@ -60,7 +60,7 @@ int is_ht_kernel() inline void cpuid(int op, int *eax, int *ebx, int *ecx, int *edx) { -#ifndef _i386__ +#ifndef __i386__ return; #else __asm__("cpuid" -- 1.6.3.1 ------------------------------------------------------------------------------ Are you an open source citizen? Join us for the Open Source Bridge conference! Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250. Need another reason to go? 24-hour hacker lounge. Register today! http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
