diff options
author | Mathieu BĂ©rard <mathieu.berard@crans.org> | 2008-08-11 13:52:38 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-08-11 13:52:38 -0400 |
commit | 9f9268821b13038556fbc029df54ab0e9b2aa77f (patch) | |
tree | e9ca5dd417acfa3a2d9171f6f5e972903dcab88a /include | |
parent | 2e2ce817ce404a5e000c9750fa96f656fed370b8 (diff) |
The smart scheduler is not optional.
Diffstat (limited to 'include')
-rw-r--r-- | include/dix-config.h.in | 3 | ||||
-rw-r--r-- | include/dixstruct.h | 4 | ||||
-rw-r--r-- | include/xorg-server.h.in | 3 |
3 files changed, 0 insertions, 10 deletions
diff --git a/include/dix-config.h.in b/include/dix-config.h.in index 6400b695e..21d8d9c10 100644 --- a/include/dix-config.h.in +++ b/include/dix-config.h.in @@ -252,9 +252,6 @@ /* Support SHAPE extension */ #undef SHAPE -/* Include time-based scheduler */ -#undef SMART_SCHEDULE - /* Define to 1 on systems derived from System V Release 4 */ #undef SVR4 diff --git a/include/dixstruct.h b/include/dixstruct.h index 306870c9b..aae2dbd77 100644 --- a/include/dixstruct.h +++ b/include/dixstruct.h @@ -129,17 +129,14 @@ typedef struct _Client { struct _FontResolution * (*fontResFunc) ( /* no need for font.h */ ClientPtr /* pClient */, int * /* num */); -#ifdef SMART_SCHEDULE int smart_priority; long smart_start_tick; long smart_stop_tick; long smart_check_tick; -#endif DeviceIntPtr clientPtr; } ClientRec; -#ifdef SMART_SCHEDULE /* * Scheduling interface */ @@ -155,7 +152,6 @@ extern void SmartScheduleStopTimer(void); extern Bool SmartScheduleInit(void); -#endif /* This prototype is used pervasively in Xext, dix */ #define DISPATCH_PROC(func) int func(ClientPtr /* client */) diff --git a/include/xorg-server.h.in b/include/xorg-server.h.in index 8cb2b5a03..b8803e748 100644 --- a/include/xorg-server.h.in +++ b/include/xorg-server.h.in @@ -61,9 +61,6 @@ /* Support SHAPE extension */ #undef SHAPE -/* Include time-based scheduler */ -#undef SMART_SCHEDULE - /* Define to 1 on systems derived from System V Release 4 */ #undef SVR4 |