| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Added a build of BLAKE3 for Mac | Martin Ridgers | 2022-01-05 | 1 | -0/+2 |
| | | |||||
| * | Oodle for Mac | Martin Ridgers | 2022-01-05 | 1 | -0/+3 |
| | | |||||
| * | CloneFile()'s unimplemented on Mac but shouldn't be a compile error | Martin Ridgers | 2022-01-05 | 1 | -1/+2 |
| | | |||||
| * | An implementation of PathFromHandle() for Mac | Martin Ridgers | 2022-01-05 | 1 | -5/+11 |
| | | |||||
| * | GetRunningExecutablePath() implementation for Mac | Martin Ridgers | 2022-01-05 | 1 | -2/+9 |
| | | |||||
| * | Removed unused include statement | Martin Ridgers | 2022-01-05 | 1 | -1/+0 |
| | | |||||
| * | Added block of POSIX includes for Mac | Martin Ridgers | 2022-01-05 | 1 | -1/+10 |
| | | |||||
| * | Use a CAS loop if atomic<Floating>::fetch_add() isn't available | Martin Ridgers | 2021-12-16 | 1 | -1/+13 |
| | | |||||
| * | Only Linux has an endian.h | Martin Ridgers | 2021-12-16 | 1 | -1/+1 |
| | | |||||
| * | GetThreadId() for Mac | Martin Ridgers | 2021-12-16 | 1 | -1/+3 |
| | | |||||
| * | Thread naming for Mac | Martin Ridgers | 2021-12-16 | 1 | -0/+4 |
| | | |||||
| * | Added MD5 tests | Martin Ridgers | 2021-12-16 | 1 | -0/+18 |
| | | |||||
| * | Deleted unused endian.h include | Martin Ridgers | 2021-12-16 | 1 | -5/+0 |
| | | |||||
| * | Not all compilers support C++20's iterator string_view contructor | Martin Ridgers | 2021-12-16 | 1 | -4/+4 |
| | | |||||
| * | Copy/paste errors in MD5 from SHA1 | Martin Ridgers | 2021-12-16 | 2 | -4/+4 |
| | | |||||
| * | Compile out source_location use if the toolchain doesn't support it | Martin Ridgers | 2021-12-16 | 2 | -3/+5 |
| | | |||||
| * | Deleted unused include | Martin Ridgers | 2021-12-16 | 1 | -1/+0 |
| | | |||||
| * | Wrapped direct use of C++20 library concepts | Martin Ridgers | 2021-12-16 | 6 | -8/+31 |
| | | | | | | | Some C++ libraries do not fully support concepts in the versions that are available by default on Linux and MacOS. The compilers do support them though so we can still apply concepts/requires to templates | ||||
| * | Use zen::Min() instead of std::min() | Martin Ridgers | 2021-12-16 | 1 | -3/+3 |
| | | | | | | | Some compilers will struggle to deduce the template type for calls to std::min() while others are more complicit. The can easliy lead to unexpected compile errors on a platform. | ||||
| * | Commented out unused Base64 decoding table | Martin Ridgers | 2021-12-16 | 1 | -0/+2 |
| | | |||||
| * | Added preprocessing config file and removed Visual Studio files. | Per Larsson | 2021-12-15 | 5 | -292/+19 |
| | | |||||
| * | DiskSpaceInfo() boolean return was back-to-front | Martin Ridgers | 2021-12-15 | 1 | -1/+1 |
| | | |||||
| * | Add DiskSpaceInfo() tests | Martin Ridgers | 2021-12-15 | 1 | -0/+17 |
| | | |||||
| * | Implement DiskSpaceInfo() using std::filesystem::space() | Martin Ridgers | 2021-12-15 | 1 | -16/+9 |
| | | |||||
| * | Implemented DiskSpaceInfo() for POSIX platforms | Martin Ridgers | 2021-12-15 | 1 | -7/+11 |
| | | |||||
| * | Misplaced #ifdef statement that should be an #if | Martin Ridgers | 2021-12-15 | 1 | -1/+1 |
| | | |||||
| * | Missing include | Martin Ridgers | 2021-12-15 | 1 | -0/+2 |
| | | |||||
| * | Missing include | Martin Ridgers | 2021-12-15 | 1 | -0/+1 |
| | | |||||
| * | Setting include dir paths under an option does not work in xmake >=2.6 | Martin Ridgers | 2021-12-15 | 1 | -0/+1 |
| | | |||||
| * | Resettled whitespace | Martin Ridgers | 2021-12-14 | 1 | -8/+7 |
| | | |||||
| * | Removed unncessary define/undef blocks around include of trace.h | Martin Ridgers | 2021-12-14 | 1 | -19/+0 |
| | | |||||
| * | Include header files when generating solution. | Per Larsson | 2021-12-14 | 1 | -0/+1 |
| | | |||||
| * | Merged main. | Per Larsson | 2021-12-14 | 25 | -223/+1515 |
| |\ | |||||
| | * | Fixed "unused function with static linkage" warning | Martin Ridgers | 2021-12-13 | 1 | -0/+2 |
| | | | |||||
| | * | Added a missing file mode for a open() that creates a file | Martin Ridgers | 2021-12-08 | 1 | -1/+1 |
| | | | |||||
| | * | Fixed unused return value warnings from POSIX/Linux headers | Martin Ridgers | 2021-12-08 | 1 | -1/+2 |
| | | | |||||
| | * | Dependent variable definition as inside a if-Windows block | Martin Ridgers | 2021-12-08 | 1 | -6/+7 |
| | | | |||||
| | * | Merged main | Martin Ridgers | 2021-12-08 | 2 | -43/+59 |
| | |\ | |||||
| | * | | Added a "path_string" type to the file traversal class | Martin Ridgers | 2021-12-02 | 1 | -1/+2 |
| | | | | |||||
| | * | | Renamed ZEN_PLATFORM_MACOS to ZEN_PLATFORM_MAC | Martin Ridgers | 2021-12-02 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | None of the other platform defines have an "OS" suffix so removing this one keeps things consistent and lowers the chance of error. | ||||
| | * | | ZEN_CONSOLE() without and VA_ARGS wouldn't compile with GCC | Martin Ridgers | 2021-12-01 | 1 | -5/+5 |
| | | | | |||||
| | * | | Process active condition was back to front | Martin Ridgers | 2021-11-29 | 1 | -1/+1 |
| | | | | |||||
| | * | | Added a simple NamedMutex test | Martin Ridgers | 2021-11-29 | 1 | -0/+15 |
| | | | | |||||
| | * | | Renamed the "ipc" test to "NamedEvent" | Martin Ridgers | 2021-11-29 | 1 | -1/+1 |
| | | | | |||||
| | * | | Implemented NamedMutex for Linux | Martin Ridgers | 2021-11-29 | 1 | -6/+39 |
| | | | | |||||
| | * | | Use the /proc/self mount to get information about ourselves | Martin Ridgers | 2021-11-29 | 1 | -4/+2 |
| | | | | |||||
| | * | | Child processes don't fully terminate until the parent waits on them | Martin Ridgers | 2021-11-26 | 1 | -4/+8 |
| | | | | |||||
| | * | | ProcessHandle::Wait() wasn't waiting indefinitely with a <0 timeout | Martin Ridgers | 2021-11-26 | 1 | -1/+1 |
| | | | | |||||
| | * | | Clear out orphaned queues so they're initially unset | Martin Ridgers | 2021-11-26 | 1 | -2/+8 |
| | | | | |||||
| | * | | It reads better to check if something empty than the opposite | Martin Ridgers | 2021-11-25 | 1 | -5/+5 |
| | | | | |||||