From fa2d02210bef71a5d79d113baa5996b191febf06 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 6 Jul 2013 00:28:54 -0700 Subject: [PATCH] Fixed bug 1936 - Broken URL in generic SDL_syscond.c cp.ml.x.dev A comment in 'src/thread/generic/SDL_syscond.c' references the URL 'http://www-classic.be.com/aboutbe/benewsletter/volume_III/Issue40.html', which cannot be resolved anymore. An alternative would be 'http://web.archive.org/web/20010914175514/http://www-classic.be.com/aboutbe/benewsletter/volume_III/Issue40.html#Workshop'. --- src/thread/generic/SDL_syscond.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/generic/SDL_syscond.c b/src/thread/generic/SDL_syscond.c index f540cddb6..5c8fe8bd6 100644 --- a/src/thread/generic/SDL_syscond.c +++ b/src/thread/generic/SDL_syscond.c @@ -187,7 +187,7 @@ SDL_CondWaitTimeout(SDL_cond * cond, SDL_mutex * mutex, Uint32 ms) the signaler can race ahead and get the condition semaphore if we are stopped between the mutex unlock and semaphore wait, giving a deadlock. See the following URL for details: - http://www-classic.be.com/aboutbe/benewsletter/volume_III/Issue40.html + http://web.archive.org/web/20010914175514/http://www-classic.be.com/aboutbe/benewsletter/volume_III/Issue40.html#Workshop */ SDL_LockMutex(cond->lock); if (cond->signals > 0) {