Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/test/fibril/timer.c

    r39026d7c r12dcd5f  
    2727 */
    2828
    29 #include <async.h>
    3029#include <fibril_synch.h>
    3130#include <pcut/pcut.h>
     
    7877
    7978        fibril_timer_set_locked(t, 100 * 1000 * 1000, test_timeout_fn, &cnt);
    80         async_usleep(1000);
     79        fibril_usleep(1000);
    8180        fts = fibril_timer_clear_locked(t);
    8281        PCUT_ASSERT_INT_EQUALS(fts_active, fts);
     
    101100        cnt = 0;
    102101        fibril_timer_set(t, 100 * 1000 * 1000, test_timeout_fn, &cnt);
    103         async_usleep(1000);
     102        fibril_usleep(1000);
    104103        fts = fibril_timer_clear(t);
    105104        PCUT_ASSERT_INT_EQUALS(fts_active, fts);
     
    127126        fibril_mutex_unlock(&lock);
    128127
    129         async_usleep(1000);
     128        fibril_usleep(1000);
    130129
    131130        fibril_mutex_lock(&lock);
Note: See TracChangeset for help on using the changeset viewer.