TokenQueue:

- fixed stop of TokenQueue polling when events are locked

RsProtectedTimer:
- switched to faster poll when events are locked


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6507 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2013-07-16 00:03:20 +00:00
parent 4edcec6fe9
commit f4ee02bb01
4 changed files with 36 additions and 34 deletions

View file

@ -31,6 +31,10 @@ public:
protected:
virtual void timerEvent(QTimerEvent *e);
private:
// do not use, please use setInterval, setSingleShot and connect signal timeout
static void singleShot(int /*msec*/, QObject */*receiver*/, const char */*member*/) {}
private:
int mInterval;
};