Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-24 | fstabinfo: deal with EINTR in waitpid call | NRK | |
2023-04-24 | fstabinfo: replace vfork with posix_spawnp | NRK | |
problem: * vfork has been removed from POSIX [0]. * clang-tidy flags the `strerror` and `eerror` call inside the vfork-ed child as undefined behavior. solution: use posix_spawnp, which is serves similar purpose and is specified in posix. and as an added bonus, it's also easier to use and less lines of code. [0]: https://www.man7.org/linux/man-pages/man2/vfork.2.html#CONFORMING_TO | |||
2023-01-29 | fstabinfo: missing includes from IWYU | Sam James | |
2022-04-30 | multiple spelling and typo fixes | Josh Soref | |
This fixes #516. | |||
2022-04-06 | migrate fully to meson build system | William Hubbs | |
- drop old build system - move shared include and source files to common directory - drop "rc-" prefix from shared include and source files - move executable-specific code to individual directories under src - adjust top-level .gitignore file for new build system This closes #489. |