Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 826 → Rev 827

/kernel/trunk/test/fpu/mips1/test.c
47,8 → 47,6
static void testit1(void *data)
{
int i;
volatile long long j;
double e,d,le,f;
int arg __attribute__((aligned(16))) = (int)((__native) data);
int after_arg __attribute__((aligned(16)));
77,8 → 75,6
static void testit2(void *data)
{
int i;
volatile long long j;
double e,d,le,f;
int arg __attribute__((aligned(16))) = (int)((__native) data);
int after_arg __attribute__((aligned(16)));
129,7 → 125,7
thread_sleep(1);
waitq_wakeup(&can_start, WAKEUP_ALL);
 
while (threads_ok != THREADS)
while (atomic_get(&threads_ok) != THREADS)
;
printf("Test passed.\n");
/kernel/trunk/test/fpu/fpu1/test.c
126,7 → 126,7
thread_sleep(1);
waitq_wakeup(&can_start, WAKEUP_ALL);
 
while (threads_ok != THREADS)
while (atomic_get(&threads_ok) != THREADS)
;
printf("Test passed.\n");
/kernel/trunk/test/fpu/sse1/test.c
47,8 → 47,6
static void testit1(void *data)
{
int i;
volatile long long j;
double e,d,le,f;
int arg __attribute__((aligned(16))) = (int)((__native) data);
int after_arg __attribute__((aligned(16)));
77,8 → 75,6
static void testit2(void *data)
{
int i;
volatile long long j;
double e,d,le,f;
int arg __attribute__((aligned(16))) = (int)((__native) data);
int after_arg __attribute__((aligned(16)));
129,7 → 125,7
thread_sleep(1);
waitq_wakeup(&can_start, WAKEUP_ALL);
 
while (threads_ok != THREADS)
while (atomic_get(&threads_ok) != THREADS)
;
printf("Test passed.\n");