CLEANUP: threads: replace the last few 1UL<<tid with tid_bit

There were a few occurences left, better replace them now.
diff --git a/src/task.c b/src/task.c
index 0022bff..7623da9 100644
--- a/src/task.c
+++ b/src/task.c
@@ -229,7 +229,7 @@
 		while (local_tasks_count < 16) {
 			t = eb32_entry(rq_next, struct task, rq);
 			rq_next = eb32_next(rq_next);
-			if (t->process_mask & (1UL << tid)) {
+			if (t->process_mask & tid_bit) {
 				/* detach the task from the queue */
 				__task_unlink_rq(t);
 				t->state |= TASK_RUNNING;