Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2 | *------------------------------------------------------------------ |
| 3 | * cj.h |
| 4 | * |
| 5 | * Copyright (c) 2013 Cisco and/or its affiliates. |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at: |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | *------------------------------------------------------------------ |
| 18 | */ |
| 19 | |
| 20 | #ifndef __included_cj_h__ |
| 21 | #define __included_cj_h__ |
| 22 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 23 | typedef struct |
| 24 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 25 | f64 time; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 26 | u32 thread_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 27 | u32 type; |
| 28 | u64 data[2]; |
| 29 | } cj_record_t; |
| 30 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 31 | typedef struct |
| 32 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 33 | volatile u64 tail; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 34 | cj_record_t *records; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 35 | u32 num_records; |
| 36 | volatile u32 enable; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 37 | |
| 38 | vlib_main_t *vlib_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 39 | } cj_main_t; |
| 40 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 41 | void cj_log (u32 type, void *data0, void *data1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 42 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 43 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 44 | * Supply in application main, so we can log from any library... |
| 45 | * Declare a weak reference in the library, off you go. |
| 46 | */ |
| 47 | |
| 48 | #define DECLARE_CJ_GLOBAL_LOG \ |
| 49 | void cj_global_log (unsigned type, void * data0, void * data1) \ |
| 50 | __attribute__ ((weak)); \ |
| 51 | \ |
| 52 | unsigned __cj_type; \ |
| 53 | void * __cj_data0; \ |
| 54 | void * __cj_data1; \ |
| 55 | \ |
| 56 | void \ |
| 57 | cj_global_log (unsigned type, void * data0, void * data1) \ |
| 58 | { \ |
| 59 | __cj_type = type; \ |
| 60 | __cj_data0 = data0; \ |
| 61 | __cj_data1 = data1; \ |
| 62 | } |
| 63 | |
| 64 | #define CJ_GLOBAL_LOG_PROTOTYPE |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 65 | void |
| 66 | cj_global_log (unsigned type, void *data0, void *data1) |
| 67 | __attribute__ ((weak)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 69 | void cj_stop (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | |
| 71 | #endif /* __included_cj_h__ */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 72 | |
| 73 | /* |
| 74 | * fd.io coding-style-patch-verification: ON |
| 75 | * |
| 76 | * Local Variables: |
| 77 | * eval: (c-set-style "gnu") |
| 78 | * End: |
| 79 | */ |