
noreply at mythtv
May 31, 2012, 5:45 PM
Post #1 of 1
(54 views)
Permalink
|
|
mythtv branch master updated by danielk. v0.26-pre-436-gf0bfe0f
|
|
The branch, master has been updated on the mythtv repository by gitolite user danielk. via f0bfe0f0737e918536b0dd8aca466c3d37df6032 (commit) via 671017faca19fc71253f6db119414ec59fb829df (commit) from ca9086de2ed28b036cbcc9e7245b792e1e110a5e (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 f0bfe0f0737e918536b0dd8aca466c3d37df6032 Author: Daniel Thor Kristjansson <danielk [at] cuymedia> at Thu, 31 May 2012 20:38:58 -0400 Committer: Daniel Thor Kristjansson <danielk [at] cuymedia> at Thu, 31 May 2012 20:45:24 -0400 URL: http://code.mythtv.org/cgit/mythtv/commit/?id=f0bfe0f0737e918536b0dd8aca466c3d37df6032 Refs #10311. Add additional debugging capabilities to ReferenceCounter. The original ReferenceCounter class would print out the QObject's objectName(). I didn't implement this when I rewrote ReferenceCounter as a general purpose reference counter. But having a name for an object does aid in debugging, this reintroduces that idea but with a QString passed into the constructor. By default this is not enabled, but if you need to debug reference counting enabling it is just a matter of uncommenting a "//#define EXTRA_DEBUG" in the header and recompiling. commit 671017faca19fc71253f6db119414ec59fb829df Author: Daniel Thor Kristjansson <danielk [at] cuymedia> at Thu, 31 May 2012 17:27:34 -0400 Committer: Daniel Thor Kristjansson <danielk [at] cuymedia> at Thu, 31 May 2012 20:45:24 -0400 URL: http://code.mythtv.org/cgit/mythtv/commit/?id=671017faca19fc71253f6db119414ec59fb829df Refs #10311. Port UPNP code from RefCounted to ReferenceCounter. ----------------------------------------------------------------------- Summary of changes: mythtv/libs/libmyth/backendselect.cpp | 29 ++++---- mythtv/libs/libmyth/mythcontext.cpp | 12 ++-- mythtv/libs/libmythbase/mythcommandlineparser.cpp | 9 ++- mythtv/libs/libmythbase/mythversion.h | 2 +- mythtv/libs/libmythbase/referencecounter.cpp | 22 +++++- mythtv/libs/libmythbase/referencecounter.h | 15 ++++- .../requesthandler/fileserverutil.cpp | 5 +- mythtv/libs/libmythprotoserver/sockethandler.cpp | 3 +- mythtv/libs/libmythupnp/eventing.cpp | 2 + mythtv/libs/libmythupnp/httpserver.h | 1 - mythtv/libs/libmythupnp/refcounted.h | 74 -------------------- mythtv/libs/libmythupnp/ssdp.cpp | 15 ++-- mythtv/libs/libmythupnp/ssdpcache.cpp | 64 +++++++++--------- mythtv/libs/libmythupnp/ssdpcache.h | 11 ++- mythtv/libs/libmythupnp/taskqueue.cpp | 11 ++-- mythtv/libs/libmythupnp/taskqueue.h | 9 ++- mythtv/libs/libmythupnp/upnpdevice.h | 8 ++- mythtv/libs/libmythupnp/upnptaskcache.h | 2 +- mythtv/libs/libmythupnp/upnptaskevent.cpp | 3 +- mythtv/libs/libmythupnp/upnptasknotify.cpp | 3 +- mythtv/libs/libmythupnp/upnptasksearch.cpp | 3 +- mythtv/programs/mythbackend/httpstatus.cpp | 20 ++--- mythtv/programs/mythfrontend/mediarenderer.cpp | 20 ++--- 23 files changed, 153 insertions(+), 190 deletions(-) delete mode 100644 mythtv/libs/libmythupnp/refcounted.h -- _______________________________________________ mythtv-firehose mailing list mythtv-firehose [at] mythtv http://www.mythtv.org/mailman/listinfo/mythtv-firehose
|