Advertising
Paste Description for Something
Makes the buffering thread know when a handle has been added. That way it can fill the buffer appropriately.
- Something
- Sunday, February 10th, 2008 at 6:08:25pm MST
- diff --git a/apps/buffering.c b/apps/buffering.c
- index 2d7ca22..0b40637 100644
- --- a/apps/buffering.c
- +++ b/apps/buffering.c
- @@ -177,6 +177,8 @@ enum {
- Q_SET_WATERMARK,
- Q_START_FILL, /* Request that the buffering thread initiate a buffer
- fill at its earliest convenience */
- + Q_HANDLE_ADDED, /* Inform the buffering thread that a handle was added
- + and that it has data needed to be buffered */
- };
- /* Buffering thread */
- @@ -936,6 +938,10 @@ int bufopen(const char *file, size_t offset, enum data_type type)
- /* Other types will get buffered in the course of normal operations */
- h->fd = -1;
- close(fd);
- +
- + /* Inform the buffering thread that we added a handle */
- + LOGFQUEUE("buffering > Q_HANDLE_ADDED %d", h->id);
- + queue_post(&buffering_queue, Q_HANDLE_ADDED, h->id);
- }
- logf("bufopen: new hdl %d", h->id);
- @@ -1358,6 +1364,11 @@ void buffering_thread(void)
- queue_reply(&buffering_queue, close_handle((int)ev.data));
- break;
- + case Q_HANDLE_ADDED:
- + LOGFQUEUE("buffering < Q_HANDLE_ADDED");
- + filling = true;
- + break;
- +
- case Q_BASE_HANDLE:
- LOGFQUEUE("buffering < Q_BASE_HANDLE");
- base_handle_id = (int)ev.data;
advertising
Update the Post
Either update this post and resubmit it with changes, or make a new post.
You may also comment on this post.
Please note that information posted here will expire by default in one month. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.