Changeset bd41ac52 in mainline for uspace/lib/c/include/io
- Timestamp:
- 2018-08-25T22:21:25Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cca80a2
- Parents:
- e2625b1a
- Location:
- uspace/lib/c/include/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/con_srv.h
re2625b1a rbd41ac52 45 45 #include <io/style.h> 46 46 #include <stdbool.h> 47 #include < sys/time.h>47 #include <time.h> 48 48 #include <stddef.h> 49 49 … … 55 55 void *sarg; 56 56 /** Period to check for abort */ 57 suseconds_t abort_timeout;57 usec_t abort_timeout; 58 58 bool aborted; 59 59 } con_srvs_t; -
uspace/lib/c/include/io/console.h
re2625b1a rbd41ac52 36 36 #define LIBC_IO_CONSOLE_H_ 37 37 38 #include < sys/time.h>38 #include <time.h> 39 39 #include <io/concaps.h> 40 40 #include <io/kbd_event.h> … … 85 85 extern bool console_get_event(console_ctrl_t *, cons_event_t *); 86 86 extern bool console_get_event_timeout(console_ctrl_t *, cons_event_t *, 87 suseconds_t *);87 usec_t *); 88 88 89 89 #endif
Note:
See TracChangeset
for help on using the changeset viewer.