]> git.ipfire.org Git - thirdparty/opentracker.git/commitdiff
Reflect new task-classes model in mutex queue
authorerdgeist <>
Sun, 18 Nov 2007 16:46:34 +0000 (16:46 +0000)
committererdgeist <>
Sun, 18 Nov 2007 16:46:34 +0000 (16:46 +0000)
ot_mutex.c

index 649d3c8f5d2de0255d83cd2c8e1d9ea515becdd9..a08b5efa1833ed3b34ae7495547d1d016b39b55a 100644 (file)
@@ -182,7 +182,7 @@ void mutex_workqueue_canceltask( int64 socket ) {
   MTX_DBG( "canceltask unlocked.\n" );
 }
 
-ot_taskid mutex_workqueue_poptask( ot_tasktype tasktype ) {
+ot_taskid mutex_workqueue_poptask( ot_tasktype *tasktype ) {
   struct ot_task * task;
   ot_taskid taskid = 0;
 
@@ -194,13 +194,14 @@ ot_taskid mutex_workqueue_poptask( ot_tasktype tasktype ) {
   while( !taskid ) {
     /* Skip to the first unassigned task this worker wants to do */
     task = tasklist;
-    while( task && ( task->tasktype != tasktype ) && ( task->taskid ) )
+    while( task && ( ( TASK_MASK & task->tasktype ) != *tasktype ) && ( task->taskid ) )
       task = task->next;
 
     /* If we found an outstanding task, assign a taskid to it
        and leave the loop */
     if( task ) {
       task->taskid = taskid = ++next_free_taskid;
+      *tasktype = task->tasktype;
     } else {
       /* Wait until the next task is being fed */
       MTX_DBG( "poptask cond waits.\n" );
@@ -231,7 +232,7 @@ int mutex_workqueue_pushresult( ot_taskid taskid, int iovec_entries, struct iove
   if( task ) {
     task->iovec_entries = iovec_entries;
     task->iovec         = iovec;
-    task->tasktype      = OT_TASKTYPE_DONE;
+    task->tasktype      = TASK_DONE;
   }
 
   /* Release lock */
@@ -253,10 +254,10 @@ int64 mutex_workqueue_popresult( int *iovec_entries, struct iovec ** iovec ) {
   MTX_DBG( "popresult locked.\n" );
 
   task = &tasklist;
-  while( *task && ( (*task)->tasktype != OT_TASKTYPE_DONE ) )
+  while( *task && ( (*task)->tasktype != TASK_DONE ) )
     task = &(*task)->next;
 
-  if( *task && ( (*task)->tasktype == OT_TASKTYPE_DONE ) ) {
+  if( *task && ( (*task)->tasktype == TASK_DONE ) ) {
     struct ot_task *ptask = *task;
 
     *iovec_entries = (*task)->iovec_entries;