]>
git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/lxc_wait.c
2 * lxc: linux Container library
4 * (C) Copyright IBM Corp. 2007, 2008
7 * Daniel Lezcano <dlezcano at fr.ibm.com>
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <sys/types.h>
33 fprintf(stderr
, "%s <command>\n", basename(cmd
));
34 fprintf(stderr
, "\t -n <name> : name of the container\n");
35 fprintf(stderr
, "\t -s <states> : ORed states to wait for STOPPED, " \
36 "STARTING, RUNNING, STOPPING, ABORTING, FREEZING, FROZEN\n");
40 static int fillwaitedstates(char *strstates
, int *states
)
42 char *token
, *saveptr
= NULL
;
45 token
= strtok_r(strstates
, "|", &saveptr
);
48 state
= lxc_str2state(token
);
53 token
= strtok_r(NULL
, "|", &saveptr
);
59 int main(int argc
, char *argv
[])
61 char opt
, *name
= NULL
, *states
= NULL
;
63 int s
[MAX_STATE
] = { }, fd
;
65 while ((opt
= getopt(argc
, argv
, "s:n:")) != -1) {
79 if (fillwaitedstates(states
, s
)) {
80 fprintf(stderr
, "invalid states specified\n");
85 fd
= lxc_monitor_open();
87 fprintf(stderr
, "failed to open monitor for '%s'\n", name
);
92 if (lxc_monitor_read(fd
, &msg
) < 0) {
94 "failed to read monitor's message for '%s'\n",
99 if (strcmp(name
, msg
.name
))
104 if (msg
.value
< 0 || msg
.value
>= MAX_STATE
) {
105 fprintf(stderr
, "Receive an invalid state number '%d'\n",
114 /* just ignore garbage */