Ignore:
File:
1 edited

Legend:

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

    r78188e5 r0d0b319  
    4141
    4242#include "posix/ctype.h"
    43 #include "posix/errno.h"
     43
     44#include <errno.h>
     45
    4446#include "posix/signal.h"
    4547#include "posix/assert.h"
    4648
    47 #include "libc/fibril_synch.h"
     49#include "libc/async.h"
    4850#include "libc/malloc.h"
    4951#include "libc/task.h"
     
    100102    struct tm *restrict result)
    101103{
    102         int rc = time_utc2tm(*timer, result);
    103         if (rc != EOK) {
    104                 errno = rc;
     104        if (failed(time_utc2tm(*timer, result))) {
    105105                return NULL;
    106106        }
     
    197197char *posix_ctime_r(const time_t *timer, char *buf)
    198198{
    199         int r = time_local2str(*timer, buf);
    200         if (r != EOK) {
    201                 errno = r;
     199        if (failed(time_local2str(*timer, buf))) {
    202200                return NULL;
    203201        }
     
    314312                        // TODO: interruptible sleep
    315313                        if (rqtp->tv_sec != 0) {
    316                                 fibril_sleep(rqtp->tv_sec);
     314                                async_sleep(rqtp->tv_sec);
    317315                        }
    318316                        if (rqtp->tv_nsec != 0) {
    319                                 fibril_usleep(rqtp->tv_nsec / 1000);
     317                                async_usleep(rqtp->tv_nsec / 1000);
    320318                        }
    321319                        return 0;
Note: See TracChangeset for help on using the changeset viewer.