Removed a faulty lock advice

This commit is contained in:
Klaus Schmidinger 2005-11-13 16:23:58 +01:00
parent 2cae2ed28c
commit 2fecf43be9
1 changed files with 2 additions and 8 deletions

10
HISTORY
View File

@ -3828,14 +3828,8 @@ Video Disk Recorder Revision History
startup if there are a great many of recordings, or the disk(s) have to spin up. startup if there are a great many of recordings, or the disk(s) have to spin up.
If the Recordings menu is opened while the list of recordings is still being read, If the Recordings menu is opened while the list of recordings is still being read,
the menu will be updated accordingly. the menu will be updated accordingly.
Plugins that access the global Recordings variable should lock the thread, either Plugins that access the global Recordings variable should lock the thread
by calling by putting something like
Recordings.Lock();
...
Recordings.Unlock();
or by putting something like
cThreadLock RecordingsLock(&Recordings); cThreadLock RecordingsLock(&Recordings);