summaryrefslogtreecommitdiffstats
path: root/tsk/thread.c
blob: cb4df25234b471dfbe963e0e7d5ce79e232057a5 (plain) (blame)
1
2
3
4
5
6
7
#include "tasking.h"

void
task_perm_release(struct Task *task, size_t mask)
{
    task->perm &= ~mask;
}