list.c revision a41f104bfbd69e5f068e5ca312a2eb513d9e81b8
/* list.c
*
* Copyright � 2013 Canonical, Inc
* Author: Serge Hallyn <serge.hallyn@ubuntu.com>
*
* it under the terms of the GNU General Public License version 2, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <lxc/lxccontainer.h>
{
struct lxc_container **clist;
char **names;
int i, n, n2;
if (argc > 1)
printf("Counting defined containers only\n");
printf("Found %d defined containers\n", n);
printf("Looking for defined containers only\n");
if (n2 != n)
for (i=0; i<n2; i++) {
struct lxc_container *c = clist[i];
}
if (n2 > 0)
printf("Looking for defined names only\n");
if (n2 != n)
for (i=0; i<n2; i++) {
}
if (n2 > 0)
printf("Looking for defined names and containers\n");
if (n2 != n)
for (i=0; i<n2; i++) {
struct lxc_container *c = clist[i];
}
if (n2 > 0) {
}
printf("Counting active containers only\n");
printf("Found %d active containers\n", n);
printf("Looking for active containers only\n");
if (n2 != n)
for (i=0; i<n2; i++) {
lxc_container_put(clist[i]);
}
if (n2 > 0)
printf("Looking for active names only\n");
if (n2 != n)
for (i=0; i<n2; i++) {
}
if (n2 > 0)
printf("Looking for active names and containers\n");
if (n2 != n)
for (i=0; i<n2; i++) {
struct lxc_container *c = clist[i];
}
if (n2 > 0) {
}
exit(0);
}