diff options
author | Adam Jackson <ajax@redhat.com> | 2008-07-24 15:28:07 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-07-24 15:46:08 -0400 |
commit | f3ff2386016ced7e677817e9761a535f0f385813 (patch) | |
tree | be66e1772735d9ac479183dbabeb74f84788e936 /os | |
parent | 3fcf4d3eb89fecaa2be7b5ac4933b693c9c3d97e (diff) |
Sync is built-in and mandatory.
Diffstat (limited to 'os')
-rw-r--r-- | os/WaitFor.c | 2 | ||||
-rw-r--r-- | os/utils.c | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/os/WaitFor.c b/os/WaitFor.c index da12976ca..f07388be4 100644 --- a/os/WaitFor.c +++ b/os/WaitFor.c @@ -364,7 +364,6 @@ WaitForSomething(int *pClientsReady) curclient = XFD_FD(&savedClientsReadable, i); client_index = GetConnectionTranslation(curclient); #endif -#ifdef XSYNC /* We implement "strict" priorities. * Only the highest priority client is returned to * dix. If multiple clients at the same priority are @@ -391,7 +390,6 @@ WaitForSomething(int *pClientsReady) * clients get batched together */ else if (client_priority == highest_priority) -#endif { pClientsReady[nready++] = client_index; } diff --git a/os/utils.c b/os/utils.c index a28db551e..19b7a7dcf 100644 --- a/os/utils.c +++ b/os/utils.c @@ -159,9 +159,6 @@ _X_EXPORT Bool noRenderExtension = FALSE; #ifdef XCSECURITY _X_EXPORT Bool noSecurityExtension = FALSE; #endif -#ifdef XSYNC -_X_EXPORT Bool noSyncExtension = FALSE; -#endif #ifdef RES _X_EXPORT Bool noResExtension = FALSE; #endif |