diff options
author | Tomas Carnecky <tom@dbservice.com> | 2008-08-04 23:06:08 +0300 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2008-08-05 01:17:32 +0300 |
commit | 5532d63488ec45953ff7f925cfb4f87adb3b04a0 (patch) | |
tree | 13999b71862b50fcb6ace956f49ae7002ecfad56 /dix/globals.c | |
parent | e882ee7056f370e0619d137b4ec3973ecb4e3479 (diff) |
Redefine WindowTable as a fixed array
Instead of xalloc'ing it every server generation. The array is always
the same size (MAXSCREENS), anyway.
Diffstat (limited to 'dix/globals.c')
-rw-r--r-- | dix/globals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dix/globals.c b/dix/globals.c index 210c7849c..d3dd33119 100644 --- a/dix/globals.c +++ b/dix/globals.c @@ -83,7 +83,7 @@ _X_EXPORT ClientPtr serverClient; _X_EXPORT int currentMaxClients; /* current size of clients array */ _X_EXPORT long maxBigRequestSize = MAX_BIG_REQUEST_SIZE; -_X_EXPORT WindowPtr *WindowTable; +_X_EXPORT WindowPtr WindowTable[MAXSCREENS]; _X_EXPORT unsigned long globalSerialNumber = 0; _X_EXPORT unsigned long serverGeneration = 0; |