| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Disable warning about unused member variables | Martin Ridgers | 2022-01-07 | 1 | -0/+1 |
| | | |||||
| * | Sorted lists merge better | Martin Ridgers | 2022-01-07 | 1 | -2/+2 |
| | | |||||
| * | Correct implementation of Invocable concept | Martin Ridgers | 2022-01-07 | 1 | -1/+1 |
| | | | | | | Without this the compiler is unable to resolve ambiguity when overloads only differ by the lambda's arguments. | ||||
| * | Use semtimedop() in NamedEvent::Wait() for platforms that support it | Martin Ridgers | 2022-01-07 | 1 | -0/+15 |
| | | |||||
| * | Implemented NamedEvents on Mac using System V semaphores | Martin Ridgers | 2022-01-07 | 1 | -2/+95 |
| | | |||||
| * | Found some Wayward whitespace | Martin Ridgers | 2022-01-07 | 1 | -1/+1 |
| | | |||||
| * | Added a trivial test call to GetCurrentThreadId() | Martin Ridgers | 2022-01-07 | 1 | -0/+2 |
| | | |||||
| * | Timeouts longer than one second wouldn't work as expected | Martin Ridgers | 2022-01-07 | 1 | -2/+2 |
| | | |||||
| * | Corrected misleading comment | Martin Ridgers | 2022-01-07 | 1 | -3/+3 |
| | | |||||
| * | Include POSIX headers on all platforms except Windows | Martin Ridgers | 2022-01-07 | 1 | -2/+5 |
| | | |||||
| * | A whitespace dance | Martin Ridgers | 2022-01-07 | 2 | -4/+11 |
| | | |||||
| * | Implemented IsProcessRunning() on a Macintosh | Martin Ridgers | 2022-01-05 | 1 | -1/+4 |
| | | |||||
| * | PathFromHandle() for Mac | Martin Ridgers | 2022-01-05 | 1 | -8/+13 |
| | | | | | | | While the /dev/fd/ mount does list the process' open file descriptors it turns out they are not symlinks so the previous readlink() didn't work as first thought. | ||||
| * | Contiguous range concepts for C++ libs that don't support them yet | Martin Ridgers | 2022-01-05 | 1 | -2/+8 |
| | | |||||
| * | Function parameter case consistency with the rest of the code base | Martin Ridgers | 2022-01-05 | 2 | -13/+13 |
| | | |||||
| * | Cleaned up some unnecessary comments | Martin Ridgers | 2022-01-05 | 1 | -2/+0 |
| | | |||||
| * | aligned_alloc() states that size must be a multiple of alignment | Martin Ridgers | 2022-01-05 | 1 | -0/+3 |
| | | |||||
| * | Merge branch 'main' of https://github.com/EpicGames/zennightly | Per Larsson | 2022-01-05 | 5 | -11/+38 |
| |\ | |||||
| | * | Added a build of BLAKE3 for Mac | Martin Ridgers | 2022-01-05 | 2 | -0/+2 |
| | | | |||||
| | * | Oodle for Mac | Martin Ridgers | 2022-01-05 | 2 | -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 |
| | | | |||||
| | * | Add compiler flags for GCC-compatible toolchains on Mac too | Martin Ridgers | 2022-01-05 | 1 | -1/+1 |
| | | | |||||
| * | | Support GC configuration from LUA. | Per Larsson | 2022-01-05 | 1 | -0/+19 |
| |/ | |||||
| * | Fix issues with deployment python script due to removal of sln files. | Zousar Shaker | 2022-01-04 | 1 | -2/+2 |
| | | |||||
| * | Allow for "Values" member of structured cache records that is equivalent to ↵ | Zousar Shaker | 2022-01-04 | 1 | -0/+11 |
| | | | | | "Attachments". | ||||
| * | Removed upstream Zen default value(s) and trim empty url values. | Per Larsson | 2022-01-04 | 2 | -5/+10 |
| | | |||||
| * | Changed timestamp to atomic int64. | Per Larsson | 2022-01-03 | 2 | -29/+55 |
| | | |||||
| * | Run tests via xmake instead of executing target. | Per Larsson | 2022-01-03 | 1 | -24/+18 |
| | | |||||
| * | Merge branch 'main' of https://github.com/EpicGames/zen | Per Larsson | 2021-12-16 | 15 | -31/+88 |
| |\ | |||||
| | * | 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 |
| | | | |||||
| * | | A little better bundle task with trace support. | Per Larsson | 2021-12-16 | 1 | -39/+75 |
| |/ | |||||
| * | Added trace scopes. | Per Larsson | 2021-12-15 | 7 | -4/+86 |
| | | |||||
| * | Updated readme. | Per Larsson | 2021-12-15 | 1 | -13/+9 |
| | | |||||
| * | Added preprocessing config file and removed Visual Studio files. | Per Larsson | 2021-12-15 | 30 | -1996/+28 |
| | | |||||