diff options
author | B Stack <bgstack15@gmail.com> | 2019-04-12 08:05:57 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-04-12 08:05:57 -0400 |
commit | 3a66f25c648c798d472f0de3b40c36a64fe75252 (patch) | |
tree | 603b0cb89ed5e4bb43725079c38c26a84c9f1425 /zen/thread.cpp | |
parent | Merge branch '10.10' into 'master' (diff) | |
download | FreeFileSync-3a66f25c648c798d472f0de3b40c36a64fe75252.tar.gz FreeFileSync-3a66f25c648c798d472f0de3b40c36a64fe75252.tar.bz2 FreeFileSync-3a66f25c648c798d472f0de3b40c36a64fe75252.zip |
10.11
Diffstat (limited to 'zen/thread.cpp')
-rw-r--r-- | zen/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/thread.cpp b/zen/thread.cpp index 08bfaa25..49c6d9b3 100644 --- a/zen/thread.cpp +++ b/zen/thread.cpp @@ -26,7 +26,7 @@ namespace uint64_t getThreadIdNative() { const pid_t tid = ::syscall(SYS_gettid); //no-fail - //"Invalid thread and process IDs": https://blogs.msdn.microsoft.com/oldnewthing/20040223-00/?p=40503 + //"Invalid thread and process IDs": https://devblogs.microsoft.com/oldnewthing/20040223-00/?p=40503 //if (tid == 0) -> not sure this holds on Linux, too! // throw std::runtime_error(std::string(__FILE__) + "[" + numberTo<std::string>(__LINE__) + "] Failed to get thread ID."); static_assert(sizeof(uint64_t) >= sizeof(tid)); |