Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3762 → Rev 3763

/drivers/ddk/linux/workqueue.c
2,6 → 2,8
#include <linux/workqueue.h>
#include <ddk.h>
 
extern int driver_wq_state;
 
struct workqueue_struct *alloc_workqueue(const char *fmt,
unsigned int flags,
int max_active)
29,8 → 31,8
// dbgprintf("wq: %x head %x, next %x\n",
// cwq, &cwq->worklist, cwq->worklist.next);
 
repeat:
 
while(driver_wq_state != 0)
{
spin_lock_irqsave(&cwq->lock, irqflags);
 
while (!list_empty(&cwq->worklist))
39,8 → 41,8
struct work_struct, entry);
work_func_t f = work->func;
list_del_init(cwq->worklist.next);
// dbgprintf("head %x, next %x\n",
// &cwq->worklist, cwq->worklist.next);
// printf("work %p, func %p\n",
// work, f);
 
spin_unlock_irqrestore(&cwq->lock, irqflags);
f(work);
50,8 → 52,7
spin_unlock_irqrestore(&cwq->lock, irqflags);
 
delay(1);
 
goto repeat;
};
}