diff options
Diffstat (limited to 'ot_mutex.c')
-rw-r--r-- | ot_mutex.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -205,12 +205,12 @@ int mutex_workqueue_pushchunked(ot_taskid taskid, struct iovec *iovec) { | |||
205 | for (task = tasklist; task; task = task->next) | 205 | for (task = tasklist; task; task = task->next) |
206 | if (task->taskid == taskid) { | 206 | if (task->taskid == taskid) { |
207 | if( iovec ) { | 207 | if( iovec ) { |
208 | fprintf(stderr, "mutex_workqueue_pushchunked pushing on taskid %d\n", taskid); | 208 | fprintf(stderr, "mutex_workqueue_pushchunked pushing on taskid %lu\n", taskid); |
209 | if (!iovec_append(&task->iovec_entries, &task->iovec, iovec) ) | 209 | if (!iovec_append(&task->iovec_entries, &task->iovec, iovec) ) |
210 | return -1; | 210 | return -1; |
211 | task->tasktype = TASK_DONE_PARTIAL; | 211 | task->tasktype = TASK_DONE_PARTIAL; |
212 | } else { | 212 | } else { |
213 | fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %d\n", taskid); | 213 | fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %lu\n", taskid); |
214 | task->tasktype = TASK_DONE; | 214 | task->tasktype = TASK_DONE; |
215 | } | 215 | } |
216 | break; | 216 | break; |
@@ -221,7 +221,7 @@ fprintf(stderr, "mutex_workqueue_pushchunked finished taskid %d\n", taskid); | |||
221 | 221 | ||
222 | io_trywrite( g_self_pipe[1], &byte, 1 ); | 222 | io_trywrite( g_self_pipe[1], &byte, 1 ); |
223 | if(!task) | 223 | if(!task) |
224 | fprintf(stderr, "mutex_workqueue_pushchunked taskid %d not found\n", taskid); | 224 | fprintf(stderr, "mutex_workqueue_pushchunked taskid %lu not found\n", taskid); |
225 | 225 | ||
226 | /* Indicate whether the worker has to throw away results */ | 226 | /* Indicate whether the worker has to throw away results */ |
227 | return task ? 0 : -1; | 227 | return task ? 0 : -1; |
@@ -240,7 +240,7 @@ int64 mutex_workqueue_popresult( int *iovec_entries, struct iovec ** iovec, int | |||
240 | for (task = &tasklist; *task; task = &((*task)->next)) | 240 | for (task = &tasklist; *task; task = &((*task)->next)) |
241 | if (((*task)->tasktype & TASK_CLASS_MASK ) == TASK_DONE) { | 241 | if (((*task)->tasktype & TASK_CLASS_MASK ) == TASK_DONE) { |
242 | struct ot_task *ptask = *task; | 242 | struct ot_task *ptask = *task; |
243 | fprintf(stderr, "Got task %d type %d with %d entries\n", (*task)->taskid, (*task)->tasktype, ptask->iovec_entries); | 243 | fprintf(stderr, "Got task %lu type %d with %d entries\n", (*task)->taskid, (*task)->tasktype, ptask->iovec_entries); |
244 | *iovec_entries = ptask->iovec_entries; | 244 | *iovec_entries = ptask->iovec_entries; |
245 | *iovec = ptask->iovec; | 245 | *iovec = ptask->iovec; |
246 | sock = ptask->sock; | 246 | sock = ptask->sock; |