aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/freezer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/freezer.h b/include/linux/freezer.h
index a1555618801d..5989883d7763 100644
--- a/include/linux/freezer.h
+++ b/include/linux/freezer.h
@@ -203,6 +203,9 @@ static inline void set_freezable_with_signal(void) {}
203#define wait_event_freezable_timeout(wq, condition, timeout) \ 203#define wait_event_freezable_timeout(wq, condition, timeout) \
204 wait_event_interruptible_timeout(wq, condition, timeout) 204 wait_event_interruptible_timeout(wq, condition, timeout)
205 205
206#define wait_event_freezekillable(wq, condition) \
207 wait_event_killable(wq, condition)
208
206#endif /* !CONFIG_FREEZER */ 209#endif /* !CONFIG_FREEZER */
207 210
208#endif /* FREEZER_H_INCLUDED */ 211#endif /* FREEZER_H_INCLUDED */