Ole Troan | 233e468 | 2019-05-16 15:01:34 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2019 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 | * NOTE: Only include this file from external components that require |
| 18 | * a loose coupling to the stats component. |
| 19 | */ |
| 20 | |
| 21 | #ifndef included_stat_weak_inlines_h |
| 22 | #define included_stat_weak_inlines_h |
| 23 | void *vlib_stats_push_heap (void *) __attribute__ ((weak)); |
| 24 | void * |
| 25 | vlib_stats_push_heap (void *unused) |
| 26 | { |
| 27 | return 0; |
| 28 | }; |
| 29 | |
| 30 | void vlib_stats_pop_heap (void *, void *, u32, int) __attribute__ ((weak)); |
| 31 | void |
| 32 | vlib_stats_pop_heap (void *notused, void *notused2, u32 i, int type) |
| 33 | { |
| 34 | }; |
Ole Troan | 92e3082 | 2019-06-16 12:33:51 +0200 | [diff] [blame] | 35 | void vlib_stats_register_error_index (void *, u8 *, u64 *, u64) |
Ole Troan | 233e468 | 2019-05-16 15:01:34 +0200 | [diff] [blame] | 36 | __attribute__ ((weak)); |
| 37 | void |
Ole Troan | 92e3082 | 2019-06-16 12:33:51 +0200 | [diff] [blame] | 38 | vlib_stats_register_error_index (void * notused, u8 * notused2, u64 * notused3, u64 notused4) |
Ole Troan | 233e468 | 2019-05-16 15:01:34 +0200 | [diff] [blame] | 39 | { |
| 40 | }; |
| 41 | |
| 42 | void vlib_stats_pop_heap2 (void *, u32, void *, int) __attribute__ ((weak)); |
| 43 | void |
| 44 | vlib_stats_pop_heap2 (void *notused, u32 notused2, void *notused3, |
| 45 | int notused4) |
| 46 | { |
| 47 | }; |
| 48 | |
| 49 | void vlib_stat_segment_lock (void) __attribute__ ((weak)); |
| 50 | void |
| 51 | vlib_stat_segment_lock (void) |
| 52 | { |
| 53 | } |
| 54 | |
| 55 | void vlib_stat_segment_unlock (void) __attribute__ ((weak)); |
| 56 | void |
| 57 | vlib_stat_segment_unlock (void) |
| 58 | { |
| 59 | } |
Ole Troan | a568a19 | 2020-04-21 17:54:41 +0200 | [diff] [blame] | 60 | void vlib_stats_delete_cm (void *) __attribute__ ((weak)); |
| 61 | void |
| 62 | vlib_stats_delete_cm (void *notused) |
| 63 | { |
| 64 | } |
Ole Troan | 233e468 | 2019-05-16 15:01:34 +0200 | [diff] [blame] | 65 | |
| 66 | #endif |