| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Encrypt serialized auth state. | Per Larsson | 2022-02-03 | 2 | -1/+10 | |
| | | ||||||
| * | clang-format | Stefan Boberg | 2022-02-02 | 6 | -18/+18 | |
| | | ||||||
| * | Initial support for symmetric encryption/decryption using OpenSSL. | Per Larsson | 2022-01-31 | 3 | -0/+287 | |
| | | ||||||
| * | TraceInit can now be initialized with "None" tracing mode | Stefan Boberg | 2022-01-30 | 2 | -1/+11 | |
| | | ||||||
| * | Fixed missing template decorator on RefPtr friend class | Martin Ridgers | 2022-01-25 | 1 | -0/+1 | |
| | | ||||||
| * | Cachepolicy (#36) | mattpetersepic | 2022-01-25 | 2 | -0/+39 | |
| | | | | | | | | | | | | | | | | | | * Copy CachePolicy implementation from UE5/Release-5.0. Add backwards compatability for clients and upstreams that are using the old protocol. * Add RefPtr templated move operator and constructor, so that RefPtr<const Foo*> A = std::move(RefPtr<Foo*>()) will do a move. * Fix broken CachePolicy tests and add tests for new Save/Load. * Remove TODO comments * CachePolicy Save/Load Fixes from codereview * Fix comment to match code change. * Remove backwards compatibility for CachePolicy change. Convert policy string tokens to PascalCase. Fix tests for new policy text. Change ParseCachePolicy to assert string is non-empty and always succeed. * Fix release build: use ZEN_WITH_TESTS define | |||||
| * | Format fix. | Per Larsson | 2022-01-22 | 10 | -54/+71 | |
| | | ||||||
| * | Added copyright headers to xmake.lua scripts | Martin Ridgers | 2022-01-20 | 1 | -0/+2 | |
| | | ||||||
| * | Support chunk requests with no ValueId, and interpret them as requested for ↵ | mattpetersepic | 2022-01-17 | 1 | -1/+1 | |
| | | | | | values put with the PutValue API, which sends a package with RawHash and RawSize on the root object. (#35) | |||||
| * | Disabled mimalloc on Mac-Arm64 as vcpkg doesn't support it | Martin Ridgers | 2022-01-14 | 1 | -1/+6 | |
| | | ||||||
| * | Fixed up compile errors if mimalloc use is disabled | Martin Ridgers | 2022-01-14 | 1 | -0/+1 | |
| | | ||||||
| * | Blake3 for Mac Arm64 | Martin Ridgers | 2022-01-13 | 1 | -1/+5 | |
| | | ||||||
| * | Be explicit about what platforms a block implements for grepability | Martin Ridgers | 2022-01-13 | 1 | -3/+3 | |
| | | ||||||
| * | Use SysV semaphores to implement NamedEvent on Linux | Martin Ridgers | 2022-01-13 | 1 | -100/+7 | |
| | | ||||||
| * | More complete toolchain and C++ library version checks | Martin Ridgers | 2022-01-13 | 1 | -9/+24 | |
| | | ||||||
| * | The "operator << (CbWriter, size_t)" is only required when using libc++ | Martin Ridgers | 2022-01-13 | 1 | -1/+1 | |
| | | ||||||
| * | Missing include | Martin Ridgers | 2022-01-13 | 1 | -0/+1 | |
| | | ||||||
| * | Added missing std:: namespace to nullptr_t use | Martin Ridgers | 2022-01-13 | 2 | -6/+6 | |
| | | ||||||
| * | Moved "concepts" include to zencore.h as toolchain support is spotty | Martin Ridgers | 2022-01-13 | 4 | -3/+1 | |
| | | ||||||
| * | Added a CbWriter stream operator for size_t-type values | Martin Ridgers | 2022-01-10 | 1 | -0/+9 | |
| | | ||||||
| * | Converted use of _format UDL to fmt::format | Martin Ridgers | 2022-01-10 | 5 | -50/+33 | |
| | | ||||||
| * | Turn all ThrowLastError() sites in source_location variants | Martin Ridgers | 2022-01-07 | 2 | -10/+11 | |
| | | ||||||
| * | Use POSIX implementation for ProcessHandle on Mac | Martin Ridgers | 2022-01-07 | 1 | -13/+5 | |
| | | ||||||
| * | Use null-signal kill() to determine if a PID is valid | Martin Ridgers | 2022-01-07 | 1 | -10/+3 | |
| | | ||||||
| * | 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 | |
| | | ||||||
| * | 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 | |
| | | ||||||