Changes in kernel/test/fpu/sse1.c [228666c:cb01e1e] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/fpu/sse1.c

    r228666c rcb01e1e  
    109109char *test_sse1(void)
    110110{
    111         unsigned int i;
    112         atomic_count_t total = 0;
     111        unsigned int i, total = 0;
    113112       
    114113        waitq_initialize(&can_start);
     
    141140        waitq_wakeup(&can_start, WAKEUP_ALL);
    142141       
    143         while (atomic_get(&threads_ok) != total) {
     142        while (atomic_get(&threads_ok) != (long) total) {
    144143                TPRINTF("Threads left: %d\n", total - atomic_get(&threads_ok));
    145144                thread_sleep(1);
Note: See TracChangeset for help on using the changeset viewer.