Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-25 | Fix a bunch of compiler warnings. Not all, but a lot. | Andreas Kling | |
2019-02-24 | LibC: A bunch of compat work towards porting GCC. | Andreas Kling | |
2019-02-23 | LibC: Enough compat work to make binutils-2.32 build and run. | Andreas Kling | |
2019-02-08 | LibC: Implement enough missing stuff to get bash-5.0 running. :^) | Andreas Kling | |
2019-01-31 | LibC: Add mktime(). | Andreas Kling | |
2019-01-31 | Add a simple clock window to guitest2. | Andreas Kling | |
This is driven by mousedown events right now, since there are no timers. | |||
2018-12-21 | Make syscall invocations look pleasant. | Andreas Kling | |
Old: Syscall::invoke(Syscall::SC_foo, (dword)arg1, (dword)arg2) New: syscall(SC_foo, arg1, arg2) | |||
2018-11-17 | Make bash-2.05b build with minimal changes. | Andreas Kling | |
This is really neat. :^) | |||
2018-11-11 | Stub out a bunch more functions to get closer to that sweet bash build. | Andreas Kling | |
2018-11-09 | Fix all current build warnings in LibC. | Andreas Kling | |
2018-11-06 | Change syscall naming scheme. | Andreas Kling | |
2018-11-05 | Lots of minor compat stuff while seeing if bash would build. | Andreas Kling | |
We're quite far from bash building, but we'll get there eventually! | |||
2018-10-25 | Add gettimeofday() syscall and LibC wrappers gettimeofday() and time(). | Andreas Kling | |
This only has second accuracy right now, I'll work out subseconds later. |