Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/time.c

    r39026d7c r78188e5  
    4545#include "posix/assert.h"
    4646
    47 #include "libc/async.h"
     47#include "libc/fibril_synch.h"
    4848#include "libc/malloc.h"
    4949#include "libc/task.h"
     
    314314                        // TODO: interruptible sleep
    315315                        if (rqtp->tv_sec != 0) {
    316                                 async_sleep(rqtp->tv_sec);
     316                                fibril_sleep(rqtp->tv_sec);
    317317                        }
    318318                        if (rqtp->tv_nsec != 0) {
    319                                 async_usleep(rqtp->tv_nsec / 1000);
     319                                fibril_usleep(rqtp->tv_nsec / 1000);
    320320                        }
    321321                        return 0;
Note: See TracChangeset for help on using the changeset viewer.