1 | /*
|
---|
2 |
|
---|
3 | Copyright 1991, 1993, 1994, 1998 The Open Group
|
---|
4 |
|
---|
5 | Permission to use, copy, modify, distribute, and sell this software and its
|
---|
6 | documentation for any purpose is hereby granted without fee, provided that
|
---|
7 | the above copyright notice appear in all copies and that both that
|
---|
8 | copyright notice and this permission notice appear in supporting
|
---|
9 | documentation.
|
---|
10 |
|
---|
11 | The above copyright notice and this permission notice shall be included in
|
---|
12 | all copies or substantial portions of the Software.
|
---|
13 |
|
---|
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
---|
17 | OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
---|
18 | AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
---|
19 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
20 |
|
---|
21 | Except as contained in this notice, the name of The Open Group shall not be
|
---|
22 | used in advertising or otherwise to promote the sale, use or other dealings
|
---|
23 | in this Software without prior written authorization from The Open Group.
|
---|
24 |
|
---|
25 | */
|
---|
26 |
|
---|
27 | /***********************************************************
|
---|
28 | Copyright 1991,1993 by Digital Equipment Corporation, Maynard, Massachusetts,
|
---|
29 | and Olivetti Research Limited, Cambridge, England.
|
---|
30 |
|
---|
31 | All Rights Reserved
|
---|
32 |
|
---|
33 | Permission to use, copy, modify, and distribute this software and its
|
---|
34 | documentation for any purpose and without fee is hereby granted,
|
---|
35 | provided that the above copyright notice appear in all copies and that
|
---|
36 | both that copyright notice and this permission notice appear in
|
---|
37 | supporting documentation, and that the names of Digital or Olivetti
|
---|
38 | not be used in advertising or publicity pertaining to distribution of the
|
---|
39 | software without specific, written prior permission.
|
---|
40 |
|
---|
41 | DIGITAL AND OLIVETTI DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
---|
42 | SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
---|
43 | FITNESS, IN NO EVENT SHALL THEY BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
---|
44 | CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
|
---|
45 | USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
---|
46 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
---|
47 | PERFORMANCE OF THIS SOFTWARE.
|
---|
48 |
|
---|
49 | ******************************************************************/
|
---|
50 |
|
---|
51 | #ifndef _SYNCSRV_H_
|
---|
52 | #define _SYNCSRV_H_
|
---|
53 |
|
---|
54 | #include "misync.h"
|
---|
55 | #include "misyncstr.h"
|
---|
56 |
|
---|
57 | /*
|
---|
58 | * The System Counter interface
|
---|
59 | */
|
---|
60 |
|
---|
61 | typedef enum {
|
---|
62 | XSyncCounterNeverChanges,
|
---|
63 | XSyncCounterNeverIncreases,
|
---|
64 | XSyncCounterNeverDecreases,
|
---|
65 | XSyncCounterUnrestricted
|
---|
66 | } SyncCounterType;
|
---|
67 |
|
---|
68 | typedef struct _SysCounterInfo {
|
---|
69 | const char *name;
|
---|
70 | CARD64 resolution;
|
---|
71 | CARD64 bracket_greater;
|
---|
72 | CARD64 bracket_less;
|
---|
73 | SyncCounterType counterType; /* how can this counter change */
|
---|
74 | void (*QueryValue)(
|
---|
75 | pointer /*pCounter*/,
|
---|
76 | CARD64 * /*freshvalue*/
|
---|
77 | );
|
---|
78 | void (*BracketValues)(
|
---|
79 | pointer /*pCounter*/,
|
---|
80 | CARD64 * /*lessthan*/,
|
---|
81 | CARD64 * /*greaterthan*/
|
---|
82 | );
|
---|
83 | } SysCounterInfo;
|
---|
84 |
|
---|
85 |
|
---|
86 |
|
---|
87 | typedef struct _SyncAlarmClientList {
|
---|
88 | ClientPtr client;
|
---|
89 | XID delete_id;
|
---|
90 | struct _SyncAlarmClientList *next;
|
---|
91 | } SyncAlarmClientList;
|
---|
92 |
|
---|
93 | typedef struct _SyncAlarm {
|
---|
94 | SyncTrigger trigger;
|
---|
95 | ClientPtr client;
|
---|
96 | XSyncAlarm alarm_id;
|
---|
97 | CARD64 delta;
|
---|
98 | int events;
|
---|
99 | int state;
|
---|
100 | SyncAlarmClientList *pEventClients;
|
---|
101 | } SyncAlarm;
|
---|
102 |
|
---|
103 | typedef struct {
|
---|
104 | ClientPtr client;
|
---|
105 | CARD32 delete_id;
|
---|
106 | int num_waitconditions;
|
---|
107 | } SyncAwaitHeader;
|
---|
108 |
|
---|
109 | typedef struct {
|
---|
110 | SyncTrigger trigger;
|
---|
111 | CARD64 event_threshold;
|
---|
112 | SyncAwaitHeader *pHeader;
|
---|
113 | } SyncAwait;
|
---|
114 |
|
---|
115 | typedef union {
|
---|
116 | SyncAwaitHeader header;
|
---|
117 | SyncAwait await;
|
---|
118 | } SyncAwaitUnion;
|
---|
119 |
|
---|
120 | extern pointer SyncCreateSystemCounter(
|
---|
121 | const char */* name */,
|
---|
122 | CARD64 /* inital_value */,
|
---|
123 | CARD64 /* resolution */,
|
---|
124 | SyncCounterType /* change characterization */,
|
---|
125 | void (* /*QueryValue*/ ) (
|
---|
126 | pointer /* pCounter */,
|
---|
127 | CARD64 * /* pValue_return */), /* XXX prototype */
|
---|
128 | void (* /*BracketValues*/) (
|
---|
129 | pointer /* pCounter */,
|
---|
130 | CARD64 * /* pbracket_less */,
|
---|
131 | CARD64 * /* pbracket_greater */)
|
---|
132 | );
|
---|
133 |
|
---|
134 | extern void SyncChangeCounter(
|
---|
135 | SyncCounter * /* pCounter*/,
|
---|
136 | CARD64 /* new_value */
|
---|
137 | );
|
---|
138 |
|
---|
139 | extern void SyncDestroySystemCounter(
|
---|
140 | pointer pCounter
|
---|
141 | );
|
---|
142 |
|
---|
143 | extern void InitServertime(void);
|
---|
144 |
|
---|
145 | extern void SyncExtensionInit(void);
|
---|
146 | #endif /* _SYNCSRV_H_ */
|
---|