summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-11-26 14:18:22 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-11-26 14:18:22 +0100
commit5c6ed74aff9a766cdede1c02e12e45a0a3d97b43 (patch)
tree2c678a7aeb6bf1d36ca8d49d952e22dff68536b8
parenteb8405695b93c76ae7bf9b17df8767907fe5d4d8 (diff)
downloadvdr-5c6ed74aff9a766cdede1c02e12e45a0a3d97b43.tar.gz
vdr-5c6ed74aff9a766cdede1c02e12e45a0a3d97b43.tar.bz2
Fixed the spelling of 'canceling'
-rw-r--r--CONTRIBUTORS5
-rw-r--r--HISTORY7
-rw-r--r--thread.c4
3 files changed, 9 insertions, 7 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index a940ed70..57af7677 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -755,7 +755,7 @@ Ludwig Nussel <ludwig.nussel@web.de>
for reporting a problem on systems that have UTF-8 enabled
for pointing out a flaw in the the description of cRingBufferLinear
for reporting a bug in cRingBufferLinear::Get() in case the buffer wraps around
- for adding some checks when cancelling a thread and removing the usleep() in
+ for adding some checks when canceling a thread and removing the usleep() in
cThread::Start()
Thomas Koch <tom@harhar.net>
@@ -857,7 +857,7 @@ Jon Burgess <mplayer@jburgess.uklinux.net>
for fixing a memory leak in thread handling when using NPTL
Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de>
- for reporting a crash when cancelling a newly created timer
+ for reporting a crash when canceling a newly created timer
for making 'diseqc.conf' a required file only if Setup.DiSEqC is activated
Michael Walle <michael.walle@web.de>
@@ -1060,6 +1060,7 @@ Wayne Keer <syphir@syphir.sytes.net>
for suggesting to make the "Channel not available!" message and mtInfo instead of
mtError
for reporting an unused variable from cTimer::GetWDayFromMDay()
+ for reporting a spelling error in 'canceling'
Marco Schlüßler <marco@lordzodiac.de>
for fixing handling colors in cDvbSpuPalette::yuv2rgb()
diff --git a/HISTORY b/HISTORY
index 92933c41..ae3a5562 100644
--- a/HISTORY
+++ b/HISTORY
@@ -346,7 +346,7 @@ Video Disk Recorder Revision History
and then renames it).
- In case the video data stream is broken the log message will come only every
5 seconds.
-- The current channel is now saved in the 'setup.conf' file when VDR is cancelled,
+- The current channel is now saved in the 'setup.conf' file when VDR is canceled,
and will be restored next time it is started (thanks to Deti Fliegl).
- The EIT scanning thread is now locked when switching channels to avoid problems.
- Encrypted channels can now be selected even without knowing the PNR (however, it
@@ -2241,7 +2241,7 @@ Video Disk Recorder Revision History
Gruber for reporting this one).
- Fixed editing channels ('timers.conf' was not written after a channel has
been modified, which could result in errors upon the next start of VDR).
-- Fixed a crash when cancelling a newly created timer (thanks to Thomas Schmidt
+- Fixed a crash when canceling a newly created timer (thanks to Thomas Schmidt
for reporting this one).
- Completed Hungarian language texts (thanks to Istvan Koenigsberger and Guido
Josten).
@@ -3065,7 +3065,7 @@ Video Disk Recorder Revision History
small packet.
- Removed the signal handler and WakeUp() call from cThread (it is no longer
needed).
-- Added some checks when cancelling a thread and removed the usleep() in
+- Added some checks when canceling a thread and removed the usleep() in
cThread::Start() (suggested by Ludwig Nussel). Also removed 'running' from
cThread and using only childTid to indicate whether a thread is actually
running.
@@ -3166,3 +3166,4 @@ Video Disk Recorder Revision History
for reporting this one).
- Some more changes to the 'childTid' handling in cThread (based on suggestions by
Stefan Huelswitt).
+- Fixed the spelling of 'canceling' (thanks to Wayne Keer for reporting this one).
diff --git a/thread.c b/thread.c
index 0bb7110e..ebb0943d 100644
--- a/thread.c
+++ b/thread.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: thread.c 1.38 2004/11/26 13:50:37 kls Exp $
+ * $Id: thread.c 1.39 2004/11/26 14:16:07 kls Exp $
*/
#include "thread.h"
@@ -281,7 +281,7 @@ void cThread::Cancel(int WaitSeconds)
return;
cCondWait::SleepMs(10);
}
- esyslog("ERROR: thread %ld won't end (waited %d seconds) - cancelling it...", childTid, WaitSeconds);
+ esyslog("ERROR: thread %ld won't end (waited %d seconds) - canceling it...", childTid, WaitSeconds);
}
childTidMutex.Lock();
if (childTid) {