[PATCH] freezer.h uses task_struct fields
[linux-2.6/linux-2.6-openrd.git] / include / linux / freezer.h
blob393063096134d505cedf33fb216ce943bae23b6e
1 /* Freezer declarations */
3 #include <linux/sched.h>
5 #ifdef CONFIG_PM
6 /*
7 * Check if a process has been frozen
8 */
9 static inline int frozen(struct task_struct *p)
11 return p->flags & PF_FROZEN;
15 * Check if there is a request to freeze a process
17 static inline int freezing(struct task_struct *p)
19 return p->flags & PF_FREEZE;
23 * Request that a process be frozen
24 * FIXME: SMP problem. We may not modify other process' flags!
26 static inline void freeze(struct task_struct *p)
28 p->flags |= PF_FREEZE;
32 * Sometimes we may need to cancel the previous 'freeze' request
34 static inline void do_not_freeze(struct task_struct *p)
36 p->flags &= ~PF_FREEZE;
40 * Wake up a frozen process
42 static inline int thaw_process(struct task_struct *p)
44 if (frozen(p)) {
45 p->flags &= ~PF_FROZEN;
46 wake_up_process(p);
47 return 1;
49 return 0;
53 * freezing is complete, mark process as frozen
55 static inline void frozen_process(struct task_struct *p)
57 p->flags = (p->flags & ~PF_FREEZE) | PF_FROZEN;
60 extern void refrigerator(void);
61 extern int freeze_processes(void);
62 extern void thaw_processes(void);
64 static inline int try_to_freeze(void)
66 if (freezing(current)) {
67 refrigerator();
68 return 1;
69 } else
70 return 0;
73 extern void thaw_some_processes(int all);
75 #else
76 static inline int frozen(struct task_struct *p) { return 0; }
77 static inline int freezing(struct task_struct *p) { return 0; }
78 static inline void freeze(struct task_struct *p) { BUG(); }
79 static inline int thaw_process(struct task_struct *p) { return 1; }
80 static inline void frozen_process(struct task_struct *p) { BUG(); }
82 static inline void refrigerator(void) {}
83 static inline int freeze_processes(void) { BUG(); return 0; }
84 static inline void thaw_processes(void) {}
86 static inline int try_to_freeze(void) { return 0; }
89 #endif