ab0b9e248e628d6a1d2d112b394b4677a8a9b197
[vpp.git] / svm / svm_test.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  *------------------------------------------------------------------
17  * svm_test.c -- brain police
18  *------------------------------------------------------------------
19  */
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <sys/types.h>
24 #include <sys/mman.h>
25 #include <sys/stat.h>
26 #include <netinet/in.h>
27 #include <signal.h>
28 #include <pthread.h>
29 #include <unistd.h>
30 #include <time.h>
31 #include <fcntl.h>
32 #include <string.h>
33 #include <vppinfra/clib.h>
34 #include <vppinfra/vec.h>
35 #include <vppinfra/hash.h>
36 #include <vppinfra/bitmap.h>
37 #include <vppinfra/fifo.h>
38 #include <vppinfra/time.h>
39 #include <vppinfra/mheap.h>
40 #include <vppinfra/heap.h>
41 #include <vppinfra/pool.h>
42
43 #include "svm.h"
44
45
46 int
47 main (int argc, char **argv)
48 {
49   svm_region_t *root_rp, *rp;
50   svm_map_region_args_t *a = 0;
51
52   vec_validate (a, 0);
53
54   root_rp = svm_region_init ();
55
56   ASSERT (root_rp);
57
58   a->name = "/qvnet";
59   a->size = (4 << 10);
60
61   rp = svm_region_find_or_create (root_rp, a);
62
63   ASSERT (rp);
64
65   *((u32 *) rp->data_base) = 0xdeadbeef;
66   svm_region_unmap (root_rp, rp);
67
68   fformat (stdout, "exiting...\n");
69
70   exit (0);
71 }
72
73 /*
74  * fd.io coding-style-patch-verification: ON
75  *
76  * Local Variables:
77  * eval: (c-set-style "gnu")
78  * End:
79  */