summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorJasmin Jessich <jasmin@anw.at>2017-05-14 00:52:37 +0200
committerJasmin Jessich <jasmin@anw.at>2017-05-14 00:52:37 +0200
commit1572944ecd70e2d3f716084a058218f3e90f241d (patch)
treea9e4d561674aec9f8d8530f25d3bc6d946921c21 /pages
parent7d2a5fec1e0f7f2ec079a4b8477a26ded11a53fc (diff)
downloadvdr-plugin-live-1572944ecd70e2d3f716084a058218f3e90f241d.tar.gz
vdr-plugin-live-1572944ecd70e2d3f716084a058218f3e90f241d.tar.bz2
Added comments concerning TODOs
Diffstat (limited to 'pages')
-rw-r--r--pages/schedule.ecpp3
-rw-r--r--pages/timerconflicts.ecpp1
-rw-r--r--pages/timers.ecpp1
-rw-r--r--pages/whats_on.ecpp1
4 files changed, 6 insertions, 0 deletions
diff --git a/pages/schedule.ecpp b/pages/schedule.ecpp
index be09d9d..96d9427 100644
--- a/pages/schedule.ecpp
+++ b/pages/schedule.ecpp
@@ -32,6 +32,9 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
pageTitle = trVDR("Schedule");
#if VDRVERSNUM >= 20301
+ /* JJJ: Order wrong! Better get first the channel and with unlocked
+ * channels lock read the schedules
+ */
LOCK_SCHEDULES_READ;
LOCK_CHANNELS_READ;
#else
diff --git a/pages/timerconflicts.ecpp b/pages/timerconflicts.ecpp
index 31f5607..b6c34f0 100644
--- a/pages/timerconflicts.ecpp
+++ b/pages/timerconflicts.ecpp
@@ -47,6 +47,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
<table class="listing" cellspacing="0" cellpadding="0">
<%cpp>
#if VDRVERSNUM >= 20301
+ /* JJJ: Lock this later when it is realy used */
LOCK_TIMERS_READ;
LOCK_SCHEDULES_READ;
#endif
diff --git a/pages/timers.ecpp b/pages/timers.ecpp
index cc2eeb6..9f5632c 100644
--- a/pages/timers.ecpp
+++ b/pages/timers.ecpp
@@ -78,6 +78,7 @@ static const size_t maximumDescriptionLength = 300;
<%cpp>
// output of the timer list:
#if VDRVERSNUM >= 20301
+ /* JJJ: Lock this inside the loop */
LOCK_SCHEDULES_READ;
#endif
for (SortedTimers::iterator timer = timers.begin(); timer != timers.end(); ++timer) {
diff --git a/pages/whats_on.ecpp b/pages/whats_on.ecpp
index a38faf9..2db13ef 100644
--- a/pages/whats_on.ecpp
+++ b/pages/whats_on.ecpp
@@ -39,6 +39,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
#if VDRVERSNUM >= 20301
+/* JJJ: Lock this later and in the right order */
LOCK_SCHEDULES_READ;
#else
cSchedulesLock schedulesLock;