Ignore:
File:
1 edited

Legend:

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

    ra000878c rcb01e1e  
    107107}
    108108
    109 const char *test_sse1(void)
     109char *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.