Modify setting scheduling priority
[platform/core/appfw/launchpad.git] / src / lib / launchpad-common / sched_priority.cc
1 /*
2  * Copyright (c) 2023 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "launchpad-common/sched_priority.hh"
18
19 #include <sys/resource.h>
20 #include <sys/time.h>
21
22 #include "launchpad-common/log_private.hh"
23
24 namespace launchpad {
25
26 void SchedPriority::Set(int priority) {
27   int ret = setpriority(PRIO_PGRP, 0, priority);
28   if (ret != 0) {
29     _E("Failed to set process priority. priority(%d), errno(%d)",
30         priority, errno);
31   } else {
32     _D("Setting priority(%d) is sucessful", priority);
33   }
34 }
35
36 int SchedPriority::Get() {
37   return getpriority(PRIO_PGRP, 0);
38 }
39
40
41 }  // namespace launchpad