aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-10-21 18:02:11 +0200
committerStefan Boberg <[email protected]>2021-10-21 18:02:11 +0200
commitfb6918388a8fc4f7e45b46535ae6dcba23e1acf5 (patch)
treeff22394530d3e9575cf466cd3da824ddea103a1a
parentMerged from main (diff)
downloadzen-fb6918388a8fc4f7e45b46535ae6dcba23e1acf5.tar.xz
zen-fb6918388a8fc4f7e45b46535ae6dcba23e1acf5.zip
Added IsReady flag to ZenServerEntry
-rw-r--r--zenutil/include/zenutil/zenserverprocess.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/zenutil/include/zenutil/zenserverprocess.h b/zenutil/include/zenutil/zenserverprocess.h
index 09728aa1a..bd3f5eb55 100644
--- a/zenutil/include/zenutil/zenserverprocess.h
+++ b/zenutil/include/zenutil/zenserverprocess.h
@@ -104,7 +104,8 @@ public:
enum class FlagsEnum : uint16_t
{
- kShutdownPlease = 1 << 0
+ kShutdownPlease = 1 << 0,
+ kIsReady = 1 << 1,
};
FRIEND_ENUM_CLASS_FLAGS(FlagsEnum);