aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/file.h (unfollow)
Commit message (Collapse)Author
2023-07-04tcp_server: always clean up connection descriptorsEgor Tensin
2023-06-09add {file,net}_close as a wrapper to close(2)Egor Tensin
2023-05-17file: rework file_readEgor Tensin
It now increases the buffer size exponentially until it finishes reading the file.
2023-04-29cmd_line: read executable name from /proc/self/exeEgor Tensin
2022-12-02add copyright noticesEgor Tensin
2022-08-26worker: capture process outputEgor Tensin
2022-08-26add some more codeEgor Tensin
This adds a basic "worker" program. You can now do something like ./server & ./worker & ./client ci_run URL REV and the server should pass a message to worker, after which it should clone the repository at URL, checkout REV, and try to run the CI script. It's extremely unfinished: I need to sort out the graceful shutdown, how the server manages workers, etc.