summaryrefslogtreecommitdiff
path: root/lib/Multi
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-07-18 20:53:23 +0200
committerYorhel <git@yorhel.nl>2009-07-18 20:53:23 +0200
commit4df0638b6f615489bd946c03753b3bbe0269e3b2 (patch)
tree4c2ede71b3902d9f4b6a9df7d32479107ba12681 /lib/Multi
parentae53633780260b152a105c83fb4a7a72cd82d33b (diff)
Notify Multi::Image for new cover images via LISTEN/NOTIFY
Yay! Another weird shared-memory-command optimized away. And the image resizer reacts a lot faster now. Noticably, even.
Diffstat (limited to 'lib/Multi')
-rw-r--r--lib/Multi/Image.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Multi/Image.pm b/lib/Multi/Image.pm
index c3a0d04f..a0c27a51 100644
--- a/lib/Multi/Image.pm
+++ b/lib/Multi/Image.pm
@@ -36,12 +36,14 @@ sub spawn {
sub _start {
$_[KERNEL]->alias_set('image');
$_[KERNEL]->sig(shutdown => 'shutdown');
+ $_[KERNEL]->post(pg => listen => coverimage => 'cv_check');
$_[KERNEL]->yield('cv_check');
$_[KERNEL]->yield('scr_check');
}
sub shutdown {
+ $_[KERNEL]->post(pg => unlisten => 'coverimage');
$_[KERNEL]->delay('cv_check');
$_[KERNEL]->delay('scr_check');
}