diff options
author | jcorgan | 2006-11-04 22:53:51 +0000 |
---|---|---|
committer | jcorgan | 2006-11-04 22:53:51 +0000 |
commit | 6f41f8088e3548e25729a74b42ebe03b53e819ae (patch) | |
tree | 7bea61ec865dae93643d466bb908e777df99233b /gnuradio-core | |
parent | 9f3bf64970dbdc69d327f00c4f12ffc10cb9dc44 (diff) | |
download | gnuradio-6f41f8088e3548e25729a74b42ebe03b53e819ae.tar.gz gnuradio-6f41f8088e3548e25729a74b42ebe03b53e819ae.tar.bz2 gnuradio-6f41f8088e3548e25729a74b42ebe03b53e819ae.zip |
Clarify bug fix
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3941 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-core')
-rw-r--r-- | gnuradio-core/src/lib/omnithread/nt.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/omnithread/nt.cc b/gnuradio-core/src/lib/omnithread/nt.cc index 03398aaa7..3853f0108 100644 --- a/gnuradio-core/src/lib/omnithread/nt.cc +++ b/gnuradio-core/src/lib/omnithread/nt.cc @@ -387,7 +387,7 @@ void omni_semaphore::post(void) { if (!ReleaseSemaphore(nt_sem, 1, NULL) - && GetLastError() != ERROR_TOO_MANY_POSTS ) // MinGW fix by Don Ward + && GetLastError() != ERROR_TOO_MANY_POSTS ) // MinGW fix--see ticket:95 in trac throw omni_thread_fatal(GetLastError()); } |