From 8b851d504875906afe3b40dd87f642fd7d5a93f1 Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Sat, 19 Dec 2015 14:30:32 +0000 Subject: Added HTTPS links wherever they are supported. --- src/OSSupport/IsThread.cpp | 6 +----- src/OSSupport/StackTrace.cpp | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) (limited to 'src/OSSupport') diff --git a/src/OSSupport/IsThread.cpp b/src/OSSupport/IsThread.cpp index e295d5f25..3f75951ba 100644 --- a/src/OSSupport/IsThread.cpp +++ b/src/OSSupport/IsThread.cpp @@ -12,7 +12,7 @@ #if defined(_MSC_VER) && defined(_DEBUG) - // Code adapted from MSDN: http://msdn.microsoft.com/en-us/library/xcb2z8hs.aspx + // Code adapted from MSDN: https://msdn.microsoft.com/en-us/library/xcb2z8hs.aspx const DWORD MS_VC_EXCEPTION = 0x406D1388; #pragma pack(push, 8) @@ -144,7 +144,3 @@ bool cIsThread::Wait(void) LOGD("Thread %s finished", m_ThreadName.c_str()); return true; } - - - - diff --git a/src/OSSupport/StackTrace.cpp b/src/OSSupport/StackTrace.cpp index 3534bc03d..030566065 100644 --- a/src/OSSupport/StackTrace.cpp +++ b/src/OSSupport/StackTrace.cpp @@ -35,14 +35,10 @@ void PrintStackTrace(void) #else #ifdef __GLIBC__ // Use the backtrace() function to get and output the stackTrace: - // Code adapted from http://stackoverflow.com/questions/77005/how-to-generate-a-stacktrace-when-my-gcc-c-app-crashes + // Code adapted from https://stackoverflow.com/questions/77005/how-to-generate-a-stacktrace-when-my-gcc-c-app-crashes void * stackTrace[30]; auto numItems = backtrace(stackTrace, ARRAYCOUNT(stackTrace)); backtrace_symbols_fd(stackTrace, numItems, STDERR_FILENO); #endif #endif } - - - - -- cgit v1.2.3