Changeset bd41ac52 in mainline for uspace/lib/c/include/io


Ignore:
Timestamp:
2018-08-25T22:21:25Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cca80a2
Parents:
e2625b1a
Message:

Get rid of sys/time.h

This commit moves the POSIX-like time functionality from libc's
sys/time.h to libposix and introduces C11-like or HelenOS-specific
interfaces to libc.

Specifically, use of sys/time.h, struct timeval, suseconds_t and
gettimeofday is replaced by time.h (C11), struct timespec (C11), usec_t
(HelenOS) and getuptime / getrealtime (HelenOS).

Also attempt to fix the implementation of clock() to return microseconds
(clocks) rather than processor cycles and move it to libc.

Location:
uspace/lib/c/include/io
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/io/con_srv.h

    re2625b1a rbd41ac52  
    4545#include <io/style.h>
    4646#include <stdbool.h>
    47 #include <sys/time.h>
     47#include <time.h>
    4848#include <stddef.h>
    4949
     
    5555        void *sarg;
    5656        /** Period to check for abort */
    57         suseconds_t abort_timeout;
     57        usec_t abort_timeout;
    5858        bool aborted;
    5959} con_srvs_t;
  • uspace/lib/c/include/io/console.h

    re2625b1a rbd41ac52  
    3636#define LIBC_IO_CONSOLE_H_
    3737
    38 #include <sys/time.h>
     38#include <time.h>
    3939#include <io/concaps.h>
    4040#include <io/kbd_event.h>
     
    8585extern bool console_get_event(console_ctrl_t *, cons_event_t *);
    8686extern bool console_get_event_timeout(console_ctrl_t *, cons_event_t *,
    87     suseconds_t *);
     87    usec_t *);
    8888
    8989#endif
Note: See TracChangeset for help on using the changeset viewer.