Implement stdio buffering #36
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "stdio-buffers"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This is going to be VERY useful for some apps that lag while reading data repeatedly from /etc/passwd, since Ext2 uses no kernel-side caching for now, and fgets() reads data character-by-character (ls -l, ps, anyone?).
Also, some third-party apps expect fflush(), setvbuf() and company.
f7be2fe20b
toa3ed950be8
Whoops, those were write buffers, not read buffers. I updated the commit title for that.
Oh my gosh this actually makes ls -l and ps usable. Looks like it works, just a few more things to do.
f704739a7c
to085d2895e8
WIP: Implement stdio bufferingto Implement stdio buffering