summaryrefslogtreecommitdiff
path: root/apps/buffering.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/buffering.c')
-rw-r--r--apps/buffering.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/buffering.c b/apps/buffering.c
index 534a82d7b9..ba613eb9db 100644
--- a/apps/buffering.c
+++ b/apps/buffering.c
@@ -907,6 +907,11 @@ int bufopen(const char *file, size_t offset, enum data_type type)
907 907
908 buf_widx += sizeof(struct mp3entry); /* safe because the handle 908 buf_widx += sizeof(struct mp3entry); /* safe because the handle
909 can't wrap */ 909 can't wrap */
910
911 /* Inform the buffering thread that we added a handle */
912 LOGFQUEUE("buffering > Q_HANDLE_ADDED %d", h->id);
913 queue_post(&buffering_queue, Q_HANDLE_ADDED, h->id);
914
910 return h->id; 915 return h->id;
911 } 916 }
912 917