summaryrefslogtreecommitdiff
path: root/plugins/gtkui
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-11-30 21:14:25 +0100
committerGravatar waker <wakeroid@gmail.com>2012-11-30 21:14:25 +0100
commit907ed40fd1b1a1298e5d339f51e68df5f0b63872 (patch)
treeb8802e5191a621b11c108ee322db00407b03ab23 /plugins/gtkui
parentbe472188fde7aa235c426486c42ae4e2278c9093 (diff)
few minor optimizations
Diffstat (limited to 'plugins/gtkui')
-rw-r--r--plugins/gtkui/coverart.c6
-rw-r--r--plugins/gtkui/gtkui.c6
2 files changed, 12 insertions, 0 deletions
diff --git a/plugins/gtkui/coverart.c b/plugins/gtkui/coverart.c
index f98957dc..2a803e51 100644
--- a/plugins/gtkui/coverart.c
+++ b/plugins/gtkui/coverart.c
@@ -22,6 +22,9 @@
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
+#ifdef __linux__
+#include <sys/prctl.h>
+#endif
#include "coverart.h"
#include "../artwork/artwork.h"
#include "gtkui.h"
@@ -109,6 +112,9 @@ redraw_playlist_cb (gpointer dt) {
void
loading_thread (void *none) {
+#ifdef __linux__
+ prctl (PR_SET_NAME, "deadbeef-gtkui-artwork", 0, 0, 0, 0);
+#endif
for (;;) {
trace ("covercache: waiting for signal\n");
deadbeef->cond_wait (cond, mutex);
diff --git a/plugins/gtkui/gtkui.c b/plugins/gtkui/gtkui.c
index 79d1ad63..a584b834 100644
--- a/plugins/gtkui/gtkui.c
+++ b/plugins/gtkui/gtkui.c
@@ -27,6 +27,9 @@
#include <sys/time.h>
#include <unistd.h>
#include <sys/stat.h>
+#ifdef __linux__
+#include <sys/prctl.h>
+#endif
#include "../../gettext.h"
#include "gtkui.h"
#include "ddblistview.h"
@@ -871,6 +874,9 @@ unlock_playlist_columns_cb (void *ctx) {
void
gtkui_thread (void *ctx) {
+#ifdef __linux__
+ prctl (PR_SET_NAME, "deadbeef-gtkui", 0, 0, 0, 0);
+#endif
XInitThreads (); // gtkglext/xcb doesn't work without this
// let's start some gtk
g_thread_init (NULL);