X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fswap.h;h=5de8c20c042f97d5df42a6be38c1adafc89de63a;hb=628c89cc68ab96fce2de7ebba5933725d147aecc;hp=f2ae49b1dec7c3b40ab55c9f0890686dfd426de7;hpb=613b411c947635136637f8cdd66b94512f761eab;p=elogind.git diff --git a/src/core/swap.h b/src/core/swap.h index f2ae49b1d..5de8c20c0 100644 --- a/src/core/swap.h +++ b/src/core/swap.h @@ -26,7 +26,6 @@ typedef struct Swap Swap; -#include "unit.h" typedef enum SwapState { SWAP_DEAD, @@ -63,9 +62,8 @@ typedef enum SwapResult { typedef struct SwapParameters { char *what; + char *options; int priority; - bool noauto:1; - bool nofail:1; } SwapParameters; struct Swap { @@ -117,8 +115,8 @@ struct Swap { extern const UnitVTable swap_vtable; -int swap_process_new_device(Manager *m, struct udev_device *dev); -int swap_process_removed_device(Manager *m, struct udev_device *dev); +int swap_process_device_new(Manager *m, struct udev_device *dev); +int swap_process_device_remove(Manager *m, struct udev_device *dev); const char* swap_state_to_string(SwapState i) _const_; SwapState swap_state_from_string(const char *s) _pure_;