Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-12-19 | Implement utime() along with a naive /bin/touch. | Andreas Kling | |
This synchronous approach to inodes is silly, obviously. I need to rework it so that the in-memory CoreInode object is the canonical inode, and then we just need a sync() that flushes pending changes to disk. |