| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | If open(O_CREAT) is used then a file mode must be given | Martin Ridgers | 2022-02-21 | 1 | -1/+1 |
| | | |||||
| * | Explicitly set access permissions so we're not affected by process' umask | Martin Ridgers | 2022-02-21 | 1 | -1/+5 |
| | | |||||
| * | Marked a few file descriptors to be closed on execute (POSIX) | Martin Ridgers | 2022-02-21 | 1 | -1/+1 |
| | | |||||
| * | clang-format | Stefan Boberg | 2022-02-02 | 1 | -3/+3 |
| | | |||||
| * | Format fix. | Per Larsson | 2022-01-22 | 1 | -1/+1 |
| | | |||||
| * | Converted use of _format UDL to fmt::format | Martin Ridgers | 2022-01-10 | 1 | -8/+4 |
| | | |||||
| * | Merged main. | Per Larsson | 2021-12-14 | 1 | -28/+98 |
| |\ | |||||
| | * | Implement zen/internalfile for POSIX platforms | Martin Ridgers | 2021-12-02 | 1 | -13/+86 |
| | | | |||||
| | * | For portability's sake, removed two unused InternalFile methods | Martin Ridgers | 2021-12-02 | 1 | -6/+0 |
| | | | |||||
| | * | Use zen::ThrowLastError() in place of throwing system_error directly | Martin Ridgers | 2021-12-02 | 1 | -6/+5 |
| | | | |||||
| | * | Use zen::Memory::Alloc/Free instead of unportable _aligned_* | Martin Ridgers | 2021-12-02 | 1 | -2/+3 |
| | | | |||||
| | * | Moved "using namespace fmt::literals" out of file level scope | Martin Ridgers | 2021-12-02 | 1 | -2/+4 |
| | | | |||||
| | * | Wrapped Windows-specific include in if-def preprocessor blocks | Martin Ridgers | 2021-11-02 | 1 | -1/+0 |
| |/ | |||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -1/+1 |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | ||||
| * | Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵ | Stefan Boberg | 2021-09-15 | 1 | -2/+1 |
| | | | | | easier to tweak implementation | ||||
| * | Added paths as context to I/O error exception messages | Stefan Boberg | 2021-05-11 | 1 | -22/+30 |
| | | |||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+222 |