Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 main (int argc, char **argv) |
| 47 | { |
| 48 | svm_region_t *root_rp, *rp; |
| 49 | svm_map_region_args_t *a = 0; |
| 50 | |
| 51 | vec_validate (a, 0); |
| 52 | |
| 53 | root_rp = svm_region_init(); |
| 54 | |
| 55 | ASSERT (root_rp); |
| 56 | |
| 57 | a->name = "/qvnet"; |
| 58 | a->size = (4<<10); |
| 59 | |
| 60 | rp = svm_region_find_or_create (root_rp, a); |
| 61 | |
| 62 | ASSERT (rp); |
| 63 | |
| 64 | *((u32 *)rp->data_base) = 0xdeadbeef; |
| 65 | svm_region_unmap (root_rp, rp); |
| 66 | |
| 67 | fformat(stdout, "exiting...\n"); |
| 68 | |
| 69 | exit (0); |
| 70 | } |