mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-26 21:12:25 +00:00
Redefine WindowTable as a fixed array
Instead of xalloc'ing it every server generation. The array is always the same size (MAXSCREENS), anyway.
This commit is contained in:
parent
e882ee7056
commit
5532d63488
8 changed files with 6 additions and 16 deletions
|
|
@ -20,7 +20,7 @@ extern int monitorResolution;
|
|||
extern int defaultColorVisualClass;
|
||||
|
||||
extern Bool Must_have_memory;
|
||||
extern WindowPtr *WindowTable;
|
||||
extern WindowPtr WindowTable[MAXSCREENS];
|
||||
extern int GrabInProgress;
|
||||
extern Bool noTestExtensions;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue