blob: 393063096134d505cedf33fb216ce943bae23b6e [file] [log] [blame]
Nigel Cunningham7dfb7102006-12-06 20:34:23 -08001/* Freezer declarations */
2
Randy Dunlap5c543ef2006-12-10 02:18:58 -08003#include <linux/sched.h>
4
Nigel Cunningham7dfb7102006-12-06 20:34:23 -08005#ifdef CONFIG_PM
6/*
7 * Check if a process has been frozen
8 */
9static inline int frozen(struct task_struct *p)
10{
11 return p->flags & PF_FROZEN;
12}
13
14/*
15 * Check if there is a request to freeze a process
16 */
17static inline int freezing(struct task_struct *p)
18{
19 return p->flags & PF_FREEZE;
20}
21
22/*
23 * Request that a process be frozen
24 * FIXME: SMP problem. We may not modify other process' flags!
25 */
26static inline void freeze(struct task_struct *p)
27{
28 p->flags |= PF_FREEZE;
29}
30
31/*
32 * Sometimes we may need to cancel the previous 'freeze' request
33 */
34static inline void do_not_freeze(struct task_struct *p)
35{
36 p->flags &= ~PF_FREEZE;
37}
38
39/*
40 * Wake up a frozen process
41 */
42static inline int thaw_process(struct task_struct *p)
43{
44 if (frozen(p)) {
45 p->flags &= ~PF_FROZEN;
46 wake_up_process(p);
47 return 1;
48 }
49 return 0;
50}
51
52/*
53 * freezing is complete, mark process as frozen
54 */
55static inline void frozen_process(struct task_struct *p)
56{
57 p->flags = (p->flags & ~PF_FREEZE) | PF_FROZEN;
58}
59
60extern void refrigerator(void);
61extern int freeze_processes(void);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080062extern void thaw_processes(void);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080063
64static inline int try_to_freeze(void)
65{
66 if (freezing(current)) {
67 refrigerator();
68 return 1;
69 } else
70 return 0;
71}
Nigel Cunninghamff395932006-12-06 20:34:28 -080072
73extern void thaw_some_processes(int all);
74
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080075#else
76static inline int frozen(struct task_struct *p) { return 0; }
77static inline int freezing(struct task_struct *p) { return 0; }
78static inline void freeze(struct task_struct *p) { BUG(); }
79static inline int thaw_process(struct task_struct *p) { return 1; }
80static inline void frozen_process(struct task_struct *p) { BUG(); }
81
82static inline void refrigerator(void) {}
83static inline int freeze_processes(void) { BUG(); return 0; }
84static inline void thaw_processes(void) {}
85
86static inline int try_to_freeze(void) { return 0; }
87
88
89#endif