Changeset 9c16c36 in mainline for uspace/lib/c/include/sys/time.h


Ignore:
Timestamp:
2018-06-07T17:00:32Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Children:
95faa4d
Parents:
8404342
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-25 17:07:26)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-07 17:00:32)
Message:

initial implementation of a new async call api

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/sys/time.h

    r8404342 r9c16c36  
    7676extern void tv_add_diff(struct timeval *, suseconds_t);
    7777extern void tv_add(struct timeval *, struct timeval *);
    78 extern suseconds_t tv_sub_diff(struct timeval *, struct timeval *);
     78extern suseconds_t tv_sub_diff(const struct timeval *, const struct timeval *);
    7979extern void tv_sub(struct timeval *, struct timeval *);
    80 extern int tv_gt(struct timeval *, struct timeval *);
    81 extern int tv_gteq(struct timeval *, struct timeval *);
     80extern int tv_gt(const struct timeval *, const struct timeval *);
     81extern int tv_gteq(const struct timeval *, const struct timeval *);
    8282extern void gettimeofday(struct timeval *, struct timezone *);
    8383extern void getuptime(struct timeval *);
Note: See TracChangeset for help on using the changeset viewer.