From bf4630076762d9c20c16c80c1c791f352b046dd1 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Mon, 30 Jun 2014 22:10:16 -0500 Subject: Port FFS tools over from Building Block repository. --- clib/test/list.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 clib/test/list.c (limited to 'clib/test/list.c') diff --git a/clib/test/list.c b/clib/test/list.c new file mode 100644 index 0000000..a93f6a7 --- /dev/null +++ b/clib/test/list.c @@ -0,0 +1,71 @@ +/* + * Copyright (c) International Business Machines Corp., 2014 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include +#include +#include + +#include +#include +#include +#include + +struct data { + list_node_t node; + int i; + float f; +}; +typedef struct data data_t; + +int main (void) { +// slab_t s = INIT_SLAB; +// slab_init(&s, "my_slab", sizeof(data_t), 0); + + list_t l = INIT_LIST; + list_init(&l); + + int i; + for (i=0; i<10; i++) { +// data_t * d = (data_t *)slab_alloc(&s); + data_t * d = (data_t *)malloc(sizeof(*d)); + + d->i = i; + d->f = (float)i; + + list_add_tail(&l, &d->node); + } + + list_iter_t it; + list_iter_init(&it, &l, LI_FLAG_FWD); + + data_t * d; + list_for_each(&it, d, node) { + printf("i: %d f: %f\n", d->i, d->f); + } + + while (list_empty(&l) == false) { + data_t * d = container_of(list_remove_tail(&l), data_t, node); + printf("i: %d f: %f\n", d->i, d->f); + } + +// slab_dump(&s, stdout); +// slab_delete(&s); + + return 0; +} + -- cgit v1.2.1