mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
WindowServer: Stop trying to boost things since it's not working
Let's temporarily disable the boosting calls until we have a solution for boosting in the new multi-user world. The error messages keep confusing people into thinking they're doing something wrong.
This commit is contained in:
parent
fc611be592
commit
e52d1a02c8
Notes:
sideshowbarker
2024-07-19 08:59:55 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/e52d1a02c8c
1 changed files with 6 additions and 0 deletions
|
@ -704,14 +704,20 @@ OwnPtr<Messages::WindowServer::SetSystemThemeResponse> 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<Messages::WindowServer::SetWindowBaseSizeAndSizeIncrementResponse> ClientConnection::handle(const Messages::WindowServer::SetWindowBaseSizeAndSizeIncrement& message)
|
||||
|
|
Loading…
Reference in a new issue