mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-03 00:00:07 +03:00
10 lines
242 B
C
10 lines
242 B
C
#ifndef __TOOLS_LINUX_FREEZER_H
|
|
#define __TOOLS_LINUX_FREEZER_H
|
|
|
|
#define try_to_freeze()
|
|
#define set_freezable()
|
|
#define freezing(task) false
|
|
#define freezable_schedule_timeout(_t) schedule_timeout(_t);
|
|
|
|
#endif /* __TOOLS_LINUX_FREEZER_H */
|