aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/nice.cpp
blob: 4cbbf31cd080a403dda44543dbbd01a586cd3f13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "nice.h"

#include "platform.h"

#if defined(_unix_)
    #include <unistd.h> 
#endif

bool Nice(int prioDelta) {
#if defined(_unix_)
    return nice(prioDelta) != -1;
#else
    return prioDelta == 0;
#endif
}