| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | 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 | |
| | | ||||||
| * | 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 | |
| | | | ||||||