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

« back to all changes in this revision

Viewing changes to libs/libmythtv/DeviceReadBuffer.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:
7
7
#include <unistd.h>
8
8
#include <pthread.h>
9
9
 
10
 
#include <qmutex.h>
11
 
#include <qwaitcondition.h>
12
 
#include <qstring.h>
 
10
#include <QMutex>
 
11
#include <QWaitCondition>
 
12
#include <QString>
13
13
 
14
14
#include "util.h"
15
15
 
88
88
    bool             request_pause;
89
89
    bool             paused;
90
90
    bool             using_poll;
 
91
    uint             max_poll_wait;
91
92
 
92
93
    size_t           size;
93
94
    size_t           used;