diff options
author | Marvin Borner | 2021-04-27 23:01:51 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-27 23:01:51 +0200 |
commit | 51a80930a9bc25fae0728994cab1e0df3b63ef48 (patch) | |
tree | e08c4f8fdc3a73cca3a291ab901c2bcf6dac453e /libs/libc/inc/sys.h | |
parent | 977e62973abda3dd9fe5cb3462fc87d273ba63e3 (diff) |
Huge compositor, timer and yielding improvements
Diffstat (limited to 'libs/libc/inc/sys.h')
-rw-r--r-- | libs/libc/inc/sys.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h index f65e020..7d81f33 100644 --- a/libs/libc/inc/sys.h +++ b/libs/libc/inc/sys.h @@ -75,6 +75,15 @@ struct event_mouse { } but; }; +struct timer { + u32 rtc; + struct { + u32 user; + u32 kernel; + } ticks; + u32 time; +}; + struct stat { u32 dev_id; u32 mode; |