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

void
thread_perm_release(struct Thread *thread, size_t mask)
{
    thread->perm &= ~mask;
}