blob: 27ce4bb37b76f217dadd095ffd4340f0c3d7aefd [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 Copyright (c) 2011 Cisco and/or its affiliates.
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15*/
16
17#include <vppinfra/mem.h>
18#include <vppinfra/pool.h>
19
20#ifdef __KERNEL__
Dave Barachc3799992016-08-15 11:12:27 -040021#include <linux/unistd.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022#else
Dave Barachc3799992016-08-15 11:12:27 -040023#include <unistd.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070024#endif
25
Dave Barachc3799992016-08-15 11:12:27 -040026int
27main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -070028{
29 int i;
30 uword next;
31 u32 *tp = 0;
32 u32 *junk;
33
34 for (i = 0; i < 70; i++)
35 pool_get (tp, junk);
Dave Barachc3799992016-08-15 11:12:27 -040036
Ed Warnickecb9cada2015-12-08 15:45:58 -070037 (void) junk; /* compiler warning */
38
39 pool_put_index (tp, 1);
40 pool_put_index (tp, 65);
41
42 next = ~0;
Dave Barachc3799992016-08-15 11:12:27 -040043 do
44 {
45 next = pool_next_index (tp, next);
46 fformat (stdout, "next index %d\n", next);
47 }
48 while (next != ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070049
50 return 0;
51}
Dave Barachc3799992016-08-15 11:12:27 -040052
53/*
54 * fd.io coding-style-patch-verification: ON
55 *
56 * Local Variables:
57 * eval: (c-set-style "gnu")
58 * End:
59 */