blob: 753a08c176ba0bce17bb1e0dad61465e2b90df28 [file] [log] [blame]
San Mehat493dad92009-09-12 10:06:57 -07001/*
2 * Copyright (C) 2007 The Android Open Source Project
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#ifndef __CUTILS_SCHED_POLICY_H
18#define __CUTILS_SCHED_POLICY_H
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24typedef enum {
25 SP_BACKGROUND = 0,
26 SP_FOREGROUND = 1,
Glenn Kasten86c7cc82012-03-05 16:14:39 -080027 SP_CNT,
28 SP_MAX = SP_CNT - 1,
San Mehat493dad92009-09-12 10:06:57 -070029} SchedPolicy;
30
Glenn Kasten86c7cc82012-03-05 16:14:39 -080031/* Assign thread tid to the cgroup associated with the specified policy.
32 * If the thread is a thread group leader, that is it's gettid() == getpid(),
33 * then the other threads in the same thread group are _not_ affected.
34 * Return value: 0 for success, or -errno for error.
35 */
San Mehat493dad92009-09-12 10:06:57 -070036extern int set_sched_policy(int tid, SchedPolicy policy);
Glenn Kasten86c7cc82012-03-05 16:14:39 -080037
38/* Return the policy associated with the cgroup of thread tid via policy pointer.
39 * Return value: 0 for success, or -1 for error and set errno.
40 */
San Mehatc0dfca72009-10-27 11:52:55 -070041extern int get_sched_policy(int tid, SchedPolicy *policy);
San Mehat493dad92009-09-12 10:06:57 -070042
Glenn Kasten86c7cc82012-03-05 16:14:39 -080043/* Return a displayable string corresponding to policy.
44 * Return value: non-NULL NUL-terminated name of unspecified length;
45 * the caller is responsible for displaying the useful part of the string.
46 */
47extern const char *get_sched_policy_name(SchedPolicy policy);
48
San Mehat493dad92009-09-12 10:06:57 -070049#ifdef __cplusplus
50}
51#endif
52
53#endif /* __CUTILS_SCHED_POLICY_H */