summaryrefslogtreecommitdiff
path: root/PACE/pace/emulation/time.c
blob: e7f2c053c0e7999bdd3a2b6f23c22d88fdb24df2 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* $Id$ */

#include "pace/emulation/time.h"

int pace_emu_clock_settime (pace_emu_clockid_t clock_id, const pace_timespec* tp)
{
  errno = ENOSYS;
  return -1;
}

int pace_emu_clock_gettime (pace_emu_clockid_t clock_id, pace_timespec* tp)
{
  errno = ENOSYS;
  return -1;
}

int pace_emu_clock_getres (pace_emu_clockid_t clock_id, pace_timespec* res)
{
  errno = ENOSYS;
  return -1;
}

int pace_emu_timer_create (pace_emu_clockid_t clock_id,
                           pace_sigevent* evp,
                           pace_emu_timer_t* timerid)
{
  errno = ENOSYS;
  return -1;
}

int pace_emu_timer_delete (pace_emu_timer_t timerid)
{
  errno = ENOSYS;
  return -1;
}

int pace_emu_timer_settime (pace_emu_timer_t timerid,
                            int flags,
                            const pace_itimerspec* value,
                            pace_itimerspec* ovalue)
{
  errno = ENOSYS;
  return -1;
}

int pace_emu_timer_gettime (pace_emu_timer_t timerid,
                            const pace_itimerspec* value)
{
  errno = ENOSYS;
  return -1;
}

int pace_emu_timer_getoverrun (pace_emu_timer_t timerid)
{
  errno = ENOSYS;
  return -1;
}