summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/schedtypes.h
blob: 0aaa61d57a15a00f0169e60e3e0258c11c9fd53e (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
58
59
60
61
62
63
64
65
66
67
/* $Id$

 * ============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    pace/win32/schedtypes.h
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================ */

/* Keep sched types defined here as they need to be in more than one
 * file and otherwise cause circular dependencies.

 * Do NOT include this file directly!! Please include "pace/sched.h". */

#ifndef PACE_SYS_SCHEDTYPES_H_WIN32
#define PACE_SYS_SCHEDTYPES_H_WIN32

#if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
#endif /* PACE_HAS_CPLUSPLUS */

  /* These are defined via POSIX, but win32 is not POSIX compliant!
   * So please forgive me for these (non pace prefix) sins! */

#ifndef SCHED_OTHER
#define SCHED_OTHER 0
#endif /* SCHED_RR */

#ifndef SCHED_FIFO
#define SCHED_FIFO 1
#endif /* SCHED_FIFO */

#ifndef SCHED_RR
#define SCHED_RR 2
#endif /* SCHED_RR */

#ifndef PACE_SCHED_OTHER
#define PACE_SCHED_OTHER SCHED_OTHER
#endif /* PACE_SCHED_OTHER */

#ifndef PACE_SCHED_FIFO
#define PACE_SCHED_FIFO SCHED_FIFO
#endif /* PACE_SCHED_FIFO */

#ifndef PACE_SCHED_RR
#define PACE_SCHED_RR SCHED_RR
#endif /* PACE_SCHED_RR */

#ifndef PACE_SCHED_PARAM
#define PACE_SCHED_PARAM 1
  typedef struct sched_param
  {
    int priority_;
  } pace_sched_param;
#endif

#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */

#endif /* PACE_SYS_SCHEDTYPES_H_WIN32 */