1 | /* |
---|---|
2 | This file is part of the KDE Project |
3 | SPDX-FileCopyrightText: 2008 Sebastian Trueg <trueg@kde.org> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.0-or-later |
6 | */ |
7 | |
8 | #ifndef BALOO_LINUX_PRIORITY_H_ |
9 | #define BALOO_LINUX_PRIORITY_H_ |
10 | |
11 | bool lowerIOPriority(); |
12 | /// Sets the priority to batch |
13 | bool lowerSchedulingPriority(); |
14 | bool setIdleSchedulingPriority(); |
15 | bool lowerPriority(); |
16 | |
17 | #endif // BALOO_LINUX_PRIORITY_H_ |
18 |