aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/freezer.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/freezer.h b/include/linux/freezer.h
index d02b78448b0f..ba4f512d2938 100644
--- a/include/linux/freezer.h
+++ b/include/linux/freezer.h
@@ -45,7 +45,7 @@ static inline bool should_send_signal(struct task_struct *p)
45} 45}
46 46
47/* Takes and releases task alloc lock using task_lock() */ 47/* Takes and releases task alloc lock using task_lock() */
48extern int thaw_process(struct task_struct *p); 48extern void __thaw_task(struct task_struct *t);
49 49
50extern bool __refrigerator(bool check_kthr_stop); 50extern bool __refrigerator(bool check_kthr_stop);
51extern int freeze_processes(void); 51extern int freeze_processes(void);
@@ -178,7 +178,6 @@ static inline int frozen(struct task_struct *p) { return 0; }
178static inline int freezing(struct task_struct *p) { return 0; } 178static inline int freezing(struct task_struct *p) { return 0; }
179static inline void set_freeze_flag(struct task_struct *p) {} 179static inline void set_freeze_flag(struct task_struct *p) {}
180static inline void clear_freeze_flag(struct task_struct *p) {} 180static inline void clear_freeze_flag(struct task_struct *p) {}
181static inline int thaw_process(struct task_struct *p) { return 1; }
182 181
183static inline bool __refrigerator(bool check_kthr_stop) { return false; } 182static inline bool __refrigerator(bool check_kthr_stop) { return false; }
184static inline int freeze_processes(void) { return -ENOSYS; } 183static inline int freeze_processes(void) { return -ENOSYS; }