diff --git a/Servers/WindowServer/ClientConnection.cpp b/Servers/WindowServer/ClientConnection.cpp index 2e9650485a..e5dc8941e9 100644 --- a/Servers/WindowServer/ClientConnection.cpp +++ b/Servers/WindowServer/ClientConnection.cpp @@ -704,14 +704,20 @@ OwnPtr ClientConnection::handle( void ClientConnection::boost() { + // FIXME: Re-enable this when we have a solution for boosting. +#if 0 if (set_process_boost(client_pid(), 10) < 0) perror("boost: set_process_boost"); +#endif } void ClientConnection::deboost() { + // FIXME: Re-enable this when we have a solution for boosting. +#if 0 if (set_process_boost(client_pid(), 0) < 0) perror("deboost: set_process_boost"); +#endif } OwnPtr ClientConnection::handle(const Messages::WindowServer::SetWindowBaseSizeAndSizeIncrement& message)