aboutsummaryrefslogtreecommitdiff
path: root/zencore
Commit message (Expand)AuthorAgeFilesLines
...
| * | Changed linkage of a helper methodMartin Ridgers2021-11-251-1/+1
| * | Use file descriptor locks to claim global ownership of message queuesMartin Ridgers2021-11-251-2/+17
| * | A whitespace gardenMartin Ridgers2021-11-251-1/+0
| * | Tests for building ArgV for a fork-execMartin Ridgers2021-11-251-0/+51
| * | A nullptr terminator ArgV only applies on LinuxMartin Ridgers2021-11-251-2/+1
| * | Moved librt dependency specification to zencore/xmake.luaMartin Ridgers2021-11-241-0/+4
| * | Tests for NamedEventMartin Ridgers2021-11-241-2/+87
| * | Reimplemented NamedEvent on Linux using POSIX message queuesMartin Ridgers2021-11-241-61/+62
| * | Added POSIX's close-on-exec flag to files that Zen opensMartin Ridgers2021-11-241-6/+6
| * | Initial integration of Trace from UE5 via the --zentrace=y xmake configMartin Ridgers2021-11-183-0/+82
| * | Filled out ZEN_THIRDPARTY_ macros for Clang and GCCMartin Ridgers2021-11-181-4/+16
| * | Added close-on-exec flag to Read/WriteFile() file descriptorsMartin Ridgers2021-11-171-2/+2
| * | Whitespace alignment pedantryMartin Ridgers2021-11-171-1/+1
| * | WriteFile() testsMartin Ridgers2021-11-171-0/+31
| * | Set correct read-write file modes on WriteFile() outputMartin Ridgers2021-11-171-2/+2
| * | Corrected flags to open() so behaviour matches Windows' CREATE_ALWAYSMartin Ridgers2021-11-171-2/+3
| * | 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-161-3/+10
| |\ \
| * | | 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
| * | | Added a PathToUtf8(path, string-buffer) overloadMartin Ridgers2021-11-162-0/+11
| * | | ToUtf8() -> PathToUtf8() as the latter is less ambiguousMartin Ridgers2021-11-162-3/+3
| * | | 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-151-1/+2
| * | | Merged mainMartin Ridgers2021-11-151-0/+1
| |\ \ \
| * | | | Fixed OpenSSL link errors (xmake-related, see comment)Martin Ridgers2021-11-151-0/+15
| * | | | Merged mainMartin Ridgers2021-11-122-5/+5
| |\ \ \ \
| * | | | | Use add_syslinks() instead of add_link() for system librariesMartin Ridgers2021-11-121-1/+1
| * | | | | Added Curl's vcpkg:openssl dependency to xmake scriptsMartin Ridgers2021-11-111-0/+1
| * | | | | 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-112-5/+67
| * | | | | 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
| * | | | | Moved the use of INVALID_HANDLE_VALUE out of ProcessHandle::Reset()Martin Ridgers2021-11-091-1/+7
| * | | | | Merged mainMartin Ridgers2021-11-094-9/+9
| |\ \ \ \ \
| * | | | | | There is no "StringBuilderImpl<C>::operator << (const C*)".Martin Ridgers2021-11-031-1/+1
| * | | | | | Event for POSIX using std:: primitivesMartin Ridgers2021-11-021-5/+64