blob: f12a7ffc88fe20506a8b85ca1e6d5e2bc7ec2821 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- machmgr.h.orig 2005-10-25 22:04:01 UTC
+++ machmgr.h
@@ -106,6 +106,10 @@ void machmgr_delete_dead();
/* Deletes all tagged machines */
void machmgr_delete_tagged();
+/* Toggles tagged status of all machines. If ignore_dead, does not
+ * tag dead machines (i.e. machines whose alive flag is down). */
+void machmgr_toggle_tag_all(bool ignore_dead);
+
/* Tags all machines. If ignore_dead, does not tag dead machines (i.e. machines
* whose alive flag is down). */
void machmgr_tag_all(bool ignore_dead);
|