mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a typo in the description of cTimers::GetTimersRead()
This commit is contained in:
parent
bac165a751
commit
fdbbbd146a
@ -2928,6 +2928,7 @@ Lars Hanisch <dvb@flensrocker.de>
|
|||||||
for adding a missing backslash to the help text of the SVDRP command MOVR
|
for adding a missing backslash to the help text of the SVDRP command MOVR
|
||||||
for fixing a memory leak in case of broken Extended Event Descriptors
|
for fixing a memory leak in case of broken Extended Event Descriptors
|
||||||
for adding a 'const' version of cTimers::GetTimer()
|
for adding a 'const' version of cTimers::GetTimer()
|
||||||
|
for fixing a typo in the description of cTimers::GetTimersRead()
|
||||||
|
|
||||||
Alex Lasnier <alex@fepg.org>
|
Alex Lasnier <alex@fepg.org>
|
||||||
for adding tuning support for ATSC devices
|
for adding tuning support for ATSC devices
|
||||||
|
2
HISTORY
2
HISTORY
@ -8872,3 +8872,5 @@ Video Disk Recorder Revision History
|
|||||||
(reported by Sergey Chernyavskiy).
|
(reported by Sergey Chernyavskiy).
|
||||||
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
|
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
|
||||||
- Added a 'const' version of cTimers::GetTimer() (thanks to Lars Hanisch).
|
- Added a 'const' version of cTimers::GetTimer() (thanks to Lars Hanisch).
|
||||||
|
- Fixed a typo in the description of cTimers::GetTimersRead() (thanks to Lars
|
||||||
|
Hanisch).
|
||||||
|
4
timers.h
4
timers.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: timers.h 4.4 2016/12/22 14:23:50 kls Exp $
|
* $Id: timers.h 4.5 2016/12/22 14:30:33 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __TIMERS_H
|
#ifndef __TIMERS_H
|
||||||
@ -122,7 +122,7 @@ public:
|
|||||||
cTimers(void);
|
cTimers(void);
|
||||||
static const cTimers *GetTimersRead(cStateKey &StateKey, int TimeoutMs = 0);
|
static const cTimers *GetTimersRead(cStateKey &StateKey, int TimeoutMs = 0);
|
||||||
///< Gets the list of timers for read access. If TimeoutMs is given,
|
///< Gets the list of timers for read access. If TimeoutMs is given,
|
||||||
///< it will wait that long to get a write lock before giving up.
|
///< it will wait that long to get a read lock before giving up.
|
||||||
///< Otherwise it will wait indefinitely. If no read lock can be
|
///< Otherwise it will wait indefinitely. If no read lock can be
|
||||||
///< obtained within the given timeout, NULL will be returned.
|
///< obtained within the given timeout, NULL will be returned.
|
||||||
///< The list is locked and a pointer to it is returned if the state
|
///< The list is locked and a pointer to it is returned if the state
|
||||||
|
Loading…
Reference in New Issue
Block a user