Changeset 5f97ef44 in mainline for uspace/lib/posix/src/time.c


Ignore:
Timestamp:
2018-07-13T14:10:15Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e3787a0
Parents:
9912f49
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-13 14:08:57)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-13 14:10:15)
Message:

Sleep is more natural as part of the fibril API.
(the implementation will move later)

File:
1 edited

Legend:

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

    r9912f49 r5f97ef44  
    297297                // TODO: interruptible sleep
    298298                if (rqtp->tv_sec != 0) {
    299                         async_sleep(rqtp->tv_sec);
     299                        fibril_sleep(rqtp->tv_sec);
    300300                }
    301301                if (rqtp->tv_nsec != 0) {
    302                         async_usleep(rqtp->tv_nsec / 1000);
     302                        fibril_usleep(rqtp->tv_nsec / 1000);
    303303                }
    304304                return 0;
Note: See TracChangeset for help on using the changeset viewer.