aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | | Compile fixMartin Ridgers2021-11-171-1/+1
| * | | | | | | | | Merged mainMartin Ridgers2021-11-178-30/+87
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | Hooked up zenserver:main() to ZenEntryPoint::Run() on POSIXMartin Ridgers2021-11-161-4/+10
| * | | | | | | | | | Separated Windows service scaffolding and the zenserver main loopMartin Ridgers2021-11-161-20/+45
| * | | | | | | | | | Stubbed out NamedMutexMartin Ridgers2021-11-161-4/+16
| * | | | | | | | | | Implemented ProcessMonitor for POSIX platformsMartin Ridgers2021-11-162-15/+31
| * | | | | | | | | | Adding missing check to see if the process is the fork or notMartin Ridgers2021-11-161-1/+1
| * | | | | | | | | | SOCK_CLOEXEC isn't a valid option for AF_UNIX-type socketsMartin Ridgers2021-11-161-1/+1
| * | | | | | | | | | Merged mainMartin Ridgers2021-11-164-19/+167
| |\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Changed SpawnServer() over to use zen::CreateProc()Martin Ridgers2021-11-161-82/+23
| * | | | | | | | | | | zen::CreateProc() variant that can launch processes unelevatedMartin Ridgers2021-11-162-0/+99
| * | | | | | | | | | | Added a zen::CreateProc() function for spawning child processesMartin Ridgers2021-11-162-0/+145
| * | | | | | | | | | | Added a ZEN_EXE_STRING_LITERAL for cross-platform path buildingMartin Ridgers2021-11-161-0/+6
| * | | | | | | | | | | Made zenserver-test depend on zenserver as the former spawns the latterMartin Ridgers2021-11-161-0/+1
| * | | | | | | | | | | Added a PathToUtf8(path, string-buffer) overloadMartin Ridgers2021-11-162-0/+11
| * | | | | | | | | | | ToUtf8() -> PathToUtf8() as the latter is less ambiguousMartin Ridgers2021-11-166-12/+12
| * | | | | | | | | | | Renamed operator<<(bool) to AppendBool() to avoid subtle errorsMartin Ridgers2021-11-161-9/+13
| * | | | | | | | | | | libcrypto links again libdl so the latter also needs careful handling in xmakeMartin Ridgers2021-11-152-5/+2
| * | | | | | | | | | | Deleted some debug code submitted by accidentMartin Ridgers2021-11-151-4/+0
| * | | | | | | | | | | GCC did not like "size uint32_t" on this line for some reasonMartin Ridgers2021-11-151-1/+1
| * | | | | | | | | | | Fixed unused variable warningsMartin Ridgers2021-11-151-2/+2
| * | | | | | | | | | | GCC does not like CacheKey member being named the same as its typeMartin Ridgers2021-11-153-45/+45
| * | | | | | | | | | | Merged mainMartin Ridgers2021-11-152-15/+38
| |\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ Merged mainMartin Ridgers2021-11-1517-225/+1618
| |\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Fixed up FileSystemTranersal visitor to use std::fs::pathMartin Ridgers2021-11-151-7/+7
| * | | | | | | | | | | | | Used unused variablesMartin Ridgers2021-11-151-0/+6
| * | | | | | | | | | | | | Deleted unused codeMartin Ridgers2021-11-151-14/+0
| * | | | | | | | | | | | | Use Zen's GetCurrentThreadId()Martin Ridgers2021-11-151-2/+2
| * | | | | | | | | | | | | Implemented a basic Concurrency::parallel_invoke() for Linux and MacMartin Ridgers2021-11-151-0/+20
| * | | | | | | | | | | | | Fixed "move prevents copy elision" compiler warningMartin Ridgers2021-11-151-1/+1
| * | | | | | | | | | | | | Temporarily if-def'd out unused project clientMartin Ridgers2021-11-151-0/+4
| * | | | | | | | | | | | | Fixed OpenSSL link errors (xmake-related, see comment)Martin Ridgers2021-11-151-0/+15
| * | | | | | | | | | | | | Wrapped "upstream apply" in ZEN_WITH_COMPUTE_SERVICESMartin Ridgers2021-11-122-0/+11
| * | | | | | | | | | | | | Merged mainMartin Ridgers2021-11-1211-82/+1866
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Fixed dlopen/close() unresolved symbolsMartin Ridgers2021-11-121-0/+4
| * | | | | | | | | | | | | | Use add_syslinks() instead of add_link() for system librariesMartin Ridgers2021-11-122-3/+3
| * | | | | | | | | | | | | | Added Curl's vcpkg:openssl dependency to xmake scriptsMartin Ridgers2021-11-112-0/+2
| * | | | | | | | | | | | | | Windows compile fixMartin Ridgers2021-11-111-1/+1
| * | | | | | | | | | | | | | Implement NamedEvent on POSIX using Unix-domain socketsMartin Ridgers2021-11-111-3/+80
| * | | | | | | | | | | | | | Removed unused u8string_view NamedEvent constructorMartin Ridgers2021-11-112-12/+0
| * | | | | | | | | | | | | | NamedEvent is no longer an Event-type object.Martin Ridgers2021-11-113-7/+69
| * | | | | | | | | | | | | | Check if an event is already set before waiting on itMartin Ridgers2021-11-111-1/+12
| * | | | | | | | | | | | | | Windows unreachable code compile fixMartin Ridgers2021-11-091-2/+0
| * | | | | | | | | | | | | | Implemented ProcessHandle::Wait() for LinuxMartin Ridgers2021-11-091-3/+32
| * | | | | | | | | | | | | | ProcessHandle::Reset() for LinuxMartin Ridgers2021-11-091-0/+3
| * | | | | | | | | | | | | | Implemented ProcessHandle::Terminate() for LinuxMartin Ridgers2021-11-091-3/+15
| * | | | | | | | | | | | | | Implemented ProcessHandle::IsRunning() for LinuxMartin Ridgers2021-11-091-1/+12
| * | | | | | | | | | | | | | Implemented ProcessHandle::Initialize(Pid) for LinuxMartin Ridgers2021-11-091-1/+10
| * | | | | | | | | | | | | | Moved "using namespace" statement into the scope it applies toMartin Ridgers2021-11-091-1/+1
| * | | | | | | | | | | | | | Only implement ProcessHandle::Initialize(void*) on WindowsMartin Ridgers2021-11-091-4/+2