ARM: tizen_tm1_defconfig: Enable missing features related with CGROUPS
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / kernel / swap / wsp / wsp_msg.h
1 #ifndef _WSP_MSG_H
2 #define _WSP_MSG_H
3
4 /*
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * Copyright (C) Samsung Electronics, 2015
20  *
21  * 2015         Vyacheslav Cherkashin <v.cherkashin@samsung.com>
22  *
23  */
24
25
26 #include <linux/types.h>
27
28
29 enum wsp_id {
30         WSP_RES_LOAD_BEGIN = 0x0001,
31         WSP_RES_LOAD_END   = 0x0002,
32         WSP_RES_PROC_BEGIN = 0x0003,
33         WSP_RES_PROC_END   = 0x0004,
34         WSP_DRAW_BEGIN     = 0x0005,
35         WSP_DRAW_END       = 0x0006
36 };
37
38
39 void wsp_msg(enum wsp_id id, u32 res_id, const char *path);
40
41
42 #endif /* _WSP_MSG_H */