~ubuntu-branches/ubuntu/lucid/mythtv/lucid

« back to all changes in this revision

Viewing changes to programs/mythbackend/mainserver.h

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello, Mario Limonciello, John Baab
  • Date: 2009-09-29 01:33:23 UTC
  • mfrom: (1.1.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20090929013323-6pvn8encm757zbxw
Tags: 0.22.0~trunk22101-0ubuntu1
[ Mario Limonciello ]
* New upstream checkout (r22101)
* Try to guard and make sure that ~mythtv is read from /etc/passwd 
  rather than assuming it's /home/mythtv.

[ John Baab ]
* debian/mythtv-common.postinst:
  - Added symlink for /home/mythtv/.mythtv/config.xml

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define MAINSERVER_H_
3
3
 
4
4
#include <QMap>
5
 
#include <QTimer>
6
5
#include <QMutex>
7
6
#include <QReadWriteLock>
8
7
#include <QEvent>
27
26
class ProcessRequestThread;
28
27
class QUrl;
29
28
class MythServer;
 
29
class QTimer;
30
30
 
31
31
class MainServer : public QObject, public MythSocketCBs
32
32
{
220
220
    };
221
221
 
222
222
    QMutex deferredDeleteLock;
223
 
    QTimer *deferredDeleteTimer;
 
223
    QTimer *deferredDeleteTimer; // audited ref #5318
224
224
    MythDeque<DeferredDeleteStruct> deferredDeleteList;
225
225
 
226
 
    QTimer *autoexpireUpdateTimer;
227
 
 
 
226
    QTimer *autoexpireUpdateTimer; // audited ref #5318
228
227
    static QMutex truncate_and_close_lock;
229
228
 
230
229
    int m_exitCode;