[mythtv-firehose] mythtv branch master updated by danielk. v0.26-pre-700-g7db675a

Git Repo Owner noreply at mythtv.org
Fri Jun 22 18:14:04 UTC 2012


The branch, master has been updated on the
mythtv repository by gitolite user danielk.
       via  7db675a9dfa85837d8171b1a4f1cfe1c1490391b (commit)
       via  bbe7b2a2d6288d56fed417d43e1f70888bfdad1f (commit)
       via  14ad67e0dbd581527e706f019cdc3384592e3371 (commit)
       via  aefe0fca98bf81f0f4e75aa59bb64d4beb8de985 (commit)
       via  c97f954b9849d10200f42bf20661308cbddadc35 (commit)
      from  1baa2020a3b8bb891e199f2c6b7a4fcf2b19f58e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7db675a9dfa85837d8171b1a4f1cfe1c1490391b
Author:    Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 14:12:08 -0400
Committer: Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 14:13:50 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=7db675a9dfa85837d8171b1a4f1cfe1c1490391b

Fix segfault in LoggerThread::initialTimeout()



commit bbe7b2a2d6288d56fed417d43e1f70888bfdad1f
Author:    Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 14:11:15 -0400
Committer: Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 14:13:49 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=bbe7b2a2d6288d56fed417d43e1f70888bfdad1f

Don't emit timeout() signal with lock held.



commit 14ad67e0dbd581527e706f019cdc3384592e3371
Author:    Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 13:26:35 -0400
Committer: Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 14:13:49 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=14ad67e0dbd581527e706f019cdc3384592e3371

Keep MythUIClock time in UTC internally.
I noticed the frontend doing a lot of stat(/etc/localtime) checks.
It turned out this was because keeping the time to update in localtime
this would lead to the time not being updated for an hour when the
clocks 'spring back', but really the problem is all those unnecessary
time conversions going on.



commit aefe0fca98bf81f0f4e75aa59bb64d4beb8de985
Author:    Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 13:19:29 -0400
Committer: Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 14:13:49 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=aefe0fca98bf81f0f4e75aa59bb64d4beb8de985

Fixes #10849. Treat MythFill{Min,Max}Hour as being in localtime.



commit c97f954b9849d10200f42bf20661308cbddadc35
Author:    Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 10:36:59 -0400
Committer: Daniel Thor Kristjansson <danielk at cuymedia.net> at Fri, 22 Jun 2012 14:13:49 -0400
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=c97f954b9849d10200f42bf20661308cbddadc35

Properly license service stuff inside mythbackend.
The LGPL 2.1 sections 2 & 3 require that if you wish to use LGPL 2.1
licensed code outside of a library you must change the license and
the notice for the code to GPL v2 or later.



-----------------------------------------------------------------------

Summary of changes:
 mythtv/libs/libmythbase/logging.cpp                |    9 ++-
 mythtv/libs/libmythbase/mythsignalingtimer.cpp     |    8 ++-
 mythtv/libs/libmythui/mythuiclock.cpp              |    6 ++-
 mythtv/programs/mythbackend/housekeeper.cpp        |   53 +++++++++++++-------
 .../mythbackend/serviceHosts/captureServiceHost.h  |   22 +++++---
 .../mythbackend/serviceHosts/channelServiceHost.h  |   22 +++++---
 .../mythbackend/serviceHosts/contentServiceHost.h  |   24 +++++----
 .../mythbackend/serviceHosts/dvrServiceHost.h      |   24 +++++----
 .../mythbackend/serviceHosts/guideServiceHost.h    |   24 +++++----
 .../mythbackend/serviceHosts/mythServiceHost.h     |   24 +++++----
 .../mythbackend/serviceHosts/videoServiceHost.h    |   22 +++++---
 mythtv/programs/mythbackend/services/capture.cpp   |   22 +++++---
 mythtv/programs/mythbackend/services/capture.h     |   22 +++++---
 mythtv/programs/mythbackend/services/channel.cpp   |   22 +++++---
 mythtv/programs/mythbackend/services/channel.h     |   22 +++++---
 mythtv/programs/mythbackend/services/content.cpp   |   24 +++++----
 mythtv/programs/mythbackend/services/content.h     |   24 +++++----
 mythtv/programs/mythbackend/services/dvr.cpp       |   24 +++++----
 mythtv/programs/mythbackend/services/dvr.h         |   24 +++++----
 mythtv/programs/mythbackend/services/guide.cpp     |   24 +++++----
 mythtv/programs/mythbackend/services/guide.h       |   24 +++++----
 mythtv/programs/mythbackend/services/myth.cpp      |   24 +++++----
 mythtv/programs/mythbackend/services/myth.h        |   24 +++++----
 .../programs/mythbackend/services/serviceUtil.cpp  |   24 +++++----
 mythtv/programs/mythbackend/services/serviceUtil.h |   24 +++++----
 mythtv/programs/mythbackend/services/video.cpp     |   22 +++++---
 mythtv/programs/mythbackend/services/video.h       |   22 +++++---
 27 files changed, 363 insertions(+), 247 deletions(-)

-- 



More information about the mythtv-firehose mailing list