blob: 06001f1ca2fa7ae296c6baacf664a6563b1458f9 (
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
|
/* -*- C++ -*- */
// $Id$
// Use this file for IRIX 6.[234] if you have the pthreads patches
// installed.
#ifndef ACE_CONFIG_IRIX6X_H
#define ACE_CONFIG_IRIX6X_H
#include "ace/pre.h"
// Include basic (non-threaded) configuration
#include "ace/config-irix6.x-sgic++-nothreads.h"
#define ACE_HAS_UALARM
// Scheduling functions are declared in <sched.h>
#define ACE_NEEDS_SCHED_H
// Compile using multi-thread libraries by default
#if !defined (ACE_MT_SAFE)
#define ACE_MT_SAFE 1
#endif /* ACE_MT_SAFE */
#if (ACE_MT_SAFE != 0)
// Add threading support
#define ACE_HAS_IRIX62_THREADS
// Needed for the threading stuff?
#include /**/ <task.h>
#define PTHREAD_MIN_PRIORITY PX_PRIO_MIN
#define PTHREAD_MAX_PRIORITY PX_PRIO_MAX
// ACE supports threads.
#define ACE_HAS_THREADS
// Platform has no implementation of pthread_condattr_setpshared(),
// even though it supports pthreads! (like Irix 6.2)
#define ACE_LACKS_CONDATTR_PSHARED
#define ACE_LACKS_MUTEXATTR_PSHARED
// IRIX 6.2 supports a variant of POSIX Pthreads, supposedly POSIX 1c
#define ACE_HAS_PTHREADS
#define ACE_HAS_PTHREADS_STD
// Compiler/platform has thread-specific storage
#define ACE_HAS_THREAD_SPECIFIC_STORAGE
// The pthread_cond_timedwait call does not reset the timer.
#define ACE_LACKS_COND_TIMEDWAIT_RESET 1
// When threads are enabled READDIR_R is supported on IRIX.
#undef ACE_LACKS_READDIR_R
#endif /* (ACE_MT_SAFE == 0) */
#include "ace/post.h"
#endif /* ACE_CONFIG_IRIX6X_H */
|