Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-10 | user: more descriptive process titles | dzwdz | |
2023-02-24 | toolchain: partially set up the sysroot | dzwdz | |
2023-02-23 | build: don't -Isrc/ in user code | dzwdz | |
2023-02-23 | fix: misc warnings | dzwdz | |
2023-01-25 | style: typedef structs, shorter namespaces | dzwdz | |
I've wanted to do this for a while, and since I've just had a relatively large refactor commit (pcpy), this is as good of a time as any. Typedefing structs was mostly inspired by Plan 9's coding style. It makes some lines of code much shorter at basically no expense. Everything related to userland kept old-style struct definitions, so as not to force that style onto other people. I also considered changing SCREAMING_ENUM_FIELDS to NicerLookingCamelcase, but I didn't, just in case that'd be confusing. | |||
2022-10-19 | shared/printf: implement %p | dzwdz | |
2022-10-04 | user/libc: camellia_open, takes cwd into account | dzwdz | |
2022-10-02 | syscall/open: add the full suite of READ/WRITE flags | dzwdz | |
2022-09-20 | shared: rename ufs_request to better fit its role in userland | dzwdz | |
The old name could have suggested that it held a response to a request received by fs_wait. The new name is unfortunately very similar to the `struct vfs_request` already used internally in the kernel, but it's better at conveying that it contains a filesystem request yet to be handled. vfs_request - virtual filesystem request (a bad name in hindsight) ufs_request - user filesystem request | |||
2022-09-04 | user/netstack: make the verb the first component of the path | dzwdz | |
This makes filtering by the verb much easier, while filtering by the local ip only slightly harder. `whitelist /net/connect` | |||
2022-08-27 | user/netstack: don't respond to RST | dzwdz | |
2022-08-27 | user/netstack: IP gateway, make networking work without a second vm | dzwdz | |
2022-08-27 | user/netstack: ARP requests | dzwdz | |
2022-08-24 | user/httpd | dzwdz | |
2022-08-24 | user/netstack: take ip as argument when mounting | dzwdz | |
2022-08-24 | user/netstack: fix the sequence number when connecting | dzwdz | |
2022-08-24 | user/netstack: TCP outgoing | dzwdz | |
I got on IRC! | |||
2022-08-23 | user/netstack: TCP sending | dzwdz | |
2022-08-23 | user/netstack: TCP recv | dzwdz | |
2022-08-23 | user/netstack: TCP listen and close | dzwdz | |
2022-08-22 | user/netstack: ip_parse | dzwdz | |
2022-08-22 | user/netstack: outgoing UDP connections | dzwdz | |
2022-08-22 | user/netstack: ARP cache | dzwdz | |
2022-08-22 | user/netstack: fix some meaningless type warnings | dzwdz | |
2022-08-22 | user/net: use a more sensible path format | dzwdz | |
2022-08-22 | user/net: fix ip checksum calculation | dzwdz | |
2022-08-21 | user: rename ethdump to netstack | dzwdz | |