summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/nice.c
blob: 8fc265adbac3fbc77e4c7ec2a779ef947c18e7d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <mlvalues.h>
#include "unix.h"
#include <errno.h>

#ifdef HAS_GETPRIORITY

#include <sys/time.h>
#include <sys/resource.h>

value unix_nice(incr)
     value incr;
{
  int prio;
  errno = 0;
  prio = getpriority(PRIO_PROCESS, 0);
  if (prio == -1 && errno != 0)
    uerror("nice", Nothing);
  prio += Int_val(incr);
  if (setpriority(PRIO_PROCESS, 0, prio) == -1)
    uerror("nice", Nothing);
  return Val_int(prio);
}

#else

value unix_nice(incr)
     value incr;
{
  int ret;
  errno = 0;
  ret = nice(Int_val(incr));
  if (ret == -1 && errno != 0) uerror("nice", Nothing);
  return Val_int(ret);
}

#endif