Skip to content

Commit

Permalink
[codingstd] No hard tabs.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Sep 17, 2012
1 parent c15424b commit 7616024
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/pmc/task.pmc
Expand Up @@ -176,10 +176,8 @@ code as the first argument.
Parrot_pcc_set_recursion_depth(interp, CURRENT_CONTEXT(interp), current_depth);
}

if (task->killed
/* TODO: racy read with write in send TASK_recv_block_CLEAR(partner) */
|| !TASK_in_preempt_TEST(SELF))
{
/* TODO: racy read with write in send TASK_recv_block_CLEAR(partner) */
if (task->killed || !TASK_in_preempt_TEST(SELF)) {
/* The task is done. */
/* Remove it from the set of active Tasks */

Expand Down

0 comments on commit 7616024

Please sign in to comment.