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 | Copyright (c) 2001, 2002, 2003 Eliot Dresselhaus |
| 17 | |
| 18 | Permission is hereby granted, free of charge, to any person obtaining |
| 19 | a copy of this software and associated documentation files (the |
| 20 | "Software"), to deal in the Software without restriction, including |
| 21 | without limitation the rights to use, copy, modify, merge, publish, |
| 22 | distribute, sublicense, and/or sell copies of the Software, and to |
| 23 | permit persons to whom the Software is furnished to do so, subject to |
| 24 | the following conditions: |
| 25 | |
| 26 | The above copyright notice and this permission notice shall be |
| 27 | included in all copies or substantial portions of the Software. |
| 28 | |
| 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 30 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 31 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 32 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 33 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 34 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 35 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 36 | */ |
| 37 | |
| 38 | #ifndef included_clib_h |
| 39 | #define included_clib_h |
| 40 | |
Benoît Ganne | 5e60c17 | 2020-07-07 16:32:22 +0200 | [diff] [blame] | 41 | #include <stddef.h> |
Damjan Marion | 5f21e1b | 2018-08-01 14:38:36 +0200 | [diff] [blame] | 42 | #include <vppinfra/config.h> |
| 43 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 44 | #ifdef __x86_64__ |
| 45 | #include <x86intrin.h> |
| 46 | #endif |
| 47 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | /* Standalone means to not assume we are running on a Unix box. */ |
| 49 | #if ! defined (CLIB_STANDALONE) && ! defined (CLIB_LINUX_KERNEL) |
| 50 | #define CLIB_UNIX |
| 51 | #endif |
| 52 | |
| 53 | #include <vppinfra/types.h> |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 54 | #include <vppinfra/atomics.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | |
| 56 | /* Global DEBUG flag. Setting this to 1 or 0 turns off |
| 57 | ASSERT (see vppinfra/error.h) & other debugging code. */ |
| 58 | #ifndef CLIB_DEBUG |
| 59 | #define CLIB_DEBUG 0 |
| 60 | #endif |
| 61 | |
| 62 | #ifndef NULL |
| 63 | #define NULL ((void *) 0) |
| 64 | #endif |
| 65 | |
| 66 | #define BITS(x) (8*sizeof(x)) |
| 67 | #define ARRAY_LEN(x) (sizeof (x)/sizeof (x[0])) |
| 68 | |
| 69 | #define _STRUCT_FIELD(t,f) (((t *) 0)->f) |
Benoît Ganne | 5e60c17 | 2020-07-07 16:32:22 +0200 | [diff] [blame] | 70 | #define STRUCT_OFFSET_OF(t,f) offsetof(t, f) |
| 71 | #define STRUCT_BIT_OFFSET_OF(t,f) (BITS(u8) * STRUCT_OFFSET_OF (t, f)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 72 | #define STRUCT_SIZE_OF(t,f) (sizeof (_STRUCT_FIELD (t, f))) |
| 73 | #define STRUCT_BITS_OF(t,f) (BITS (_STRUCT_FIELD (t, f))) |
| 74 | #define STRUCT_ARRAY_LEN(t,f) ARRAY_LEN (_STRUCT_FIELD (t, f)) |
Dave Barach | dbf19ca | 2016-03-15 10:21:54 +0100 | [diff] [blame] | 75 | #define STRUCT_MARK(mark) u8 mark[0] |
| 76 | #define STRUCT_MARK_PTR(v, f) &(v)->f |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 77 | |
| 78 | /* Stride in bytes between struct array elements. */ |
| 79 | #define STRUCT_STRIDE_OF(t,f) \ |
| 80 | ( ((uword) & (((t *) 0)[1].f)) \ |
| 81 | - ((uword) & (((t *) 0)[0].f))) |
| 82 | |
| 83 | #define STRUCT_OFFSET_OF_VAR(v,f) ((uword) (&(v)->f) - (uword) (v)) |
| 84 | |
| 85 | /* Used to pack structure elements. */ |
| 86 | #define CLIB_PACKED(x) x __attribute__ ((packed)) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 87 | #define CLIB_UNUSED(x) x __attribute__ ((unused)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 88 | |
David Johnson | d9818dd | 2018-12-14 14:53:41 -0500 | [diff] [blame] | 89 | /* similar to CLIB_CACHE_LINE_ALIGN_MARK() but with arbitrary alignment */ |
| 90 | #define CLIB_ALIGN_MARK(name, alignment) u8 name[0] __attribute__((aligned(alignment))) |
| 91 | |
Dave Barach | cabbee7 | 2017-11-18 08:43:06 -0500 | [diff] [blame] | 92 | /* Make a string from the macro's argument */ |
| 93 | #define CLIB_STRING_MACRO(x) #x |
| 94 | |
Damjan Marion | 04f3db3 | 2017-11-10 21:55:45 +0100 | [diff] [blame] | 95 | #define __clib_unused __attribute__ ((unused)) |
| 96 | #define __clib_weak __attribute__ ((weak)) |
| 97 | #define __clib_packed __attribute__ ((packed)) |
| 98 | #define __clib_constructor __attribute__ ((constructor)) |
Damjan Marion | a1e03d4 | 2020-05-06 23:38:58 +0200 | [diff] [blame] | 99 | #define __clib_noinline __attribute__ ((noinline)) |
| 100 | #define __clib_aligned(x) __attribute__ ((aligned(x))) |
| 101 | #define __clib_section(s) __attribute__ ((section(s))) |
Damjan Marion | a218512 | 2020-04-08 00:52:53 +0200 | [diff] [blame] | 102 | #define __clib_warn_unused_result __attribute__ ((warn_unused_result)) |
Damjan Marion | dae1c7e | 2020-10-17 13:32:25 +0200 | [diff] [blame] | 103 | #define __clib_export __attribute__ ((visibility("default"))) |
Damjan Marion | 04f3db3 | 2017-11-10 21:55:45 +0100 | [diff] [blame] | 104 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | #define never_inline __attribute__ ((__noinline__)) |
| 106 | |
| 107 | #if CLIB_DEBUG > 0 |
| 108 | #define always_inline static inline |
| 109 | #define static_always_inline static inline |
| 110 | #else |
| 111 | #define always_inline static inline __attribute__ ((__always_inline__)) |
| 112 | #define static_always_inline static inline __attribute__ ((__always_inline__)) |
| 113 | #endif |
| 114 | |
| 115 | |
| 116 | /* Reserved (unused) structure element with address offset between |
| 117 | from and to. */ |
| 118 | #define CLIB_PAD_FROM_TO(from,to) u8 pad_##from[(to) - (from)] |
| 119 | |
| 120 | /* Hints to compiler about hot/cold code. */ |
| 121 | #define PREDICT_FALSE(x) __builtin_expect((x),0) |
| 122 | #define PREDICT_TRUE(x) __builtin_expect((x),1) |
| 123 | |
Benoît Ganne | dc812d9 | 2019-12-16 10:42:25 +0100 | [diff] [blame] | 124 | /* |
| 125 | * Compiler barrier |
| 126 | * prevent compiler to reorder memory access accross this boundary |
| 127 | * prevent compiler to cache values in register (force reload) |
| 128 | * Not to be confused with CPU memory barrier below |
| 129 | */ |
| 130 | #define CLIB_COMPILER_BARRIER() asm volatile ("":::"memory") |
| 131 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | /* Full memory barrier (read and write). */ |
| 133 | #define CLIB_MEMORY_BARRIER() __sync_synchronize () |
| 134 | |
Damjan Marion | eaabe07 | 2017-03-22 10:18:13 +0100 | [diff] [blame] | 135 | #if __x86_64__ |
| 136 | #define CLIB_MEMORY_STORE_BARRIER() __builtin_ia32_sfence () |
| 137 | #else |
| 138 | #define CLIB_MEMORY_STORE_BARRIER() __sync_synchronize () |
| 139 | #endif |
| 140 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | /* Arranges for function to be called before main. */ |
| 142 | #define INIT_FUNCTION(decl) \ |
| 143 | decl __attribute ((constructor)); \ |
| 144 | decl |
| 145 | |
| 146 | /* Arranges for function to be called before exit. */ |
| 147 | #define EXIT_FUNCTION(decl) \ |
| 148 | decl __attribute ((destructor)); \ |
| 149 | decl |
| 150 | |
| 151 | /* Use __builtin_clz if available. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 152 | #if uword_bits == 64 |
Damjan Marion | 1105600 | 2018-05-10 13:40:44 +0200 | [diff] [blame] | 153 | #define count_leading_zeros(x) __builtin_clzll (x) |
| 154 | #define count_trailing_zeros(x) __builtin_ctzll (x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | #else |
Damjan Marion | 1105600 | 2018-05-10 13:40:44 +0200 | [diff] [blame] | 156 | #define count_leading_zeros(x) __builtin_clzl (x) |
| 157 | #define count_trailing_zeros(x) __builtin_ctzl (x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 158 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 159 | |
| 160 | #if defined (count_leading_zeros) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 161 | always_inline uword |
Damjan Marion | e21a0b2 | 2021-04-25 10:58:07 +0200 | [diff] [blame] | 162 | clear_lowest_set_bit (uword x) |
| 163 | { |
| 164 | #ifdef __BMI2__ |
| 165 | return _blsr_u64 (x); |
| 166 | #else |
| 167 | return x ^ (1ULL << count_trailing_zeros (x)); |
| 168 | #endif |
| 169 | } |
| 170 | |
| 171 | always_inline uword |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 172 | min_log2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 173 | { |
| 174 | uword n; |
Damjan Marion | 1105600 | 2018-05-10 13:40:44 +0200 | [diff] [blame] | 175 | n = count_leading_zeros (x); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 176 | return BITS (uword) - n - 1; |
| 177 | } |
| 178 | #else |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 179 | always_inline uword |
| 180 | min_log2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 181 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 182 | uword a = x, b = BITS (uword) / 2, c = 0, r = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 183 | |
| 184 | /* Reduce x to 4 bit result. */ |
| 185 | #define _ \ |
| 186 | { \ |
| 187 | c = a >> b; \ |
| 188 | if (c) a = c; \ |
| 189 | if (c) r += b; \ |
| 190 | b /= 2; \ |
| 191 | } |
| 192 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 193 | if (BITS (uword) > 32) |
| 194 | _; |
| 195 | _; |
| 196 | _; |
| 197 | _; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 198 | #undef _ |
| 199 | |
| 200 | /* Do table lookup on 4 bit partial. */ |
| 201 | if (BITS (uword) > 32) |
| 202 | { |
| 203 | const u64 table = 0x3333333322221104LL; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 204 | uword t = (table >> (4 * a)) & 0xf; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | r = t < 4 ? r + t : ~0; |
| 206 | } |
| 207 | else |
| 208 | { |
| 209 | const u32 table = 0x22221104; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 210 | uword t = (a & 8) ? 3 : ((table >> (4 * a)) & 0xf); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | r = t < 4 ? r + t : ~0; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 212 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 213 | |
| 214 | return r; |
| 215 | } |
| 216 | #endif |
| 217 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 218 | always_inline uword |
| 219 | max_log2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 220 | { |
| 221 | uword l = min_log2 (x); |
| 222 | if (x > ((uword) 1 << l)) |
| 223 | l++; |
| 224 | return l; |
| 225 | } |
| 226 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 227 | always_inline u64 |
| 228 | min_log2_u64 (u64 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | { |
| 230 | if (BITS (uword) == 64) |
| 231 | return min_log2 (x); |
| 232 | else |
| 233 | { |
| 234 | uword l, y; |
| 235 | y = x; |
| 236 | l = 0; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 237 | if (y == 0) |
| 238 | { |
| 239 | l += 32; |
| 240 | x >>= 32; |
| 241 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 242 | l += min_log2 (x); |
| 243 | return l; |
| 244 | } |
| 245 | } |
| 246 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 247 | always_inline uword |
| 248 | pow2_mask (uword x) |
| 249 | { |
| 250 | return ((uword) 1 << x) - (uword) 1; |
| 251 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 253 | always_inline uword |
| 254 | max_pow2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 255 | { |
| 256 | word y = (word) 1 << min_log2 (x); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 257 | if (x > y) |
| 258 | y *= 2; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 259 | return y; |
| 260 | } |
| 261 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 262 | always_inline uword |
| 263 | is_pow2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 264 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 265 | return 0 == (x & (x - 1)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 266 | } |
| 267 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 268 | always_inline uword |
Ryujiro Shibuya | cc10856 | 2020-06-24 08:36:14 +0100 | [diff] [blame] | 269 | round_down_pow2 (uword x, uword pow2) |
| 270 | { |
| 271 | return (x) & ~(pow2 - 1); |
| 272 | } |
| 273 | |
| 274 | always_inline uword |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 275 | round_pow2 (uword x, uword pow2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 276 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 277 | return (x + pow2 - 1) & ~(pow2 - 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 278 | } |
| 279 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 280 | always_inline u64 |
| 281 | round_pow2_u64 (u64 x, u64 pow2) |
| 282 | { |
| 283 | return (x + pow2 - 1) & ~(pow2 - 1); |
| 284 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 285 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 286 | always_inline uword |
| 287 | first_set (uword x) |
| 288 | { |
| 289 | return x & -x; |
| 290 | } |
| 291 | |
| 292 | always_inline uword |
| 293 | log2_first_set (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 294 | { |
| 295 | uword result; |
| 296 | #ifdef count_trailing_zeros |
Damjan Marion | 1105600 | 2018-05-10 13:40:44 +0200 | [diff] [blame] | 297 | result = count_trailing_zeros (x); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 298 | #else |
| 299 | result = min_log2 (first_set (x)); |
| 300 | #endif |
| 301 | return result; |
| 302 | } |
| 303 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 304 | always_inline f64 |
| 305 | flt_round_down (f64 x) |
| 306 | { |
| 307 | return (int) x; |
| 308 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 309 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 310 | always_inline word |
| 311 | flt_round_nearest (f64 x) |
| 312 | { |
| 313 | return (word) (x + .5); |
| 314 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 315 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 316 | always_inline f64 |
| 317 | flt_round_to_multiple (f64 x, f64 f) |
| 318 | { |
| 319 | return f * flt_round_nearest (x / f); |
| 320 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 321 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 322 | always_inline uword |
| 323 | extract_bits (uword x, int start, int count) |
| 324 | { |
| 325 | #ifdef __BMI__ |
| 326 | return _bextr_u64 (x, start, count); |
| 327 | #endif |
| 328 | return (x >> start) & pow2_mask (count); |
| 329 | } |
| 330 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 331 | #define clib_max(x,y) \ |
| 332 | ({ \ |
| 333 | __typeof__ (x) _x = (x); \ |
| 334 | __typeof__ (y) _y = (y); \ |
| 335 | _x > _y ? _x : _y; \ |
| 336 | }) |
| 337 | |
| 338 | #define clib_min(x,y) \ |
| 339 | ({ \ |
| 340 | __typeof__ (x) _x = (x); \ |
| 341 | __typeof__ (y) _y = (y); \ |
| 342 | _x < _y ? _x : _y; \ |
| 343 | }) |
| 344 | |
Florin Coras | 7808df2 | 2020-11-02 18:00:32 -0800 | [diff] [blame] | 345 | #define clib_clamp(x,lo,hi) \ |
| 346 | ({ \ |
| 347 | __typeof__ (x) _x = (x); \ |
| 348 | __typeof__ (lo) _lo = (lo); \ |
| 349 | __typeof__ (hi) _hi = (hi); \ |
| 350 | _x < _lo ? _lo : (_x > _hi ? _hi : _x); \ |
| 351 | }) |
| 352 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 353 | #define clib_abs(x) \ |
| 354 | ({ \ |
| 355 | __typeof__ (x) _x = (x); \ |
| 356 | _x < 0 ? -_x : _x; \ |
| 357 | }) |
| 358 | |
| 359 | /* Standard standalone-only function declarations. */ |
| 360 | #ifndef CLIB_UNIX |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 361 | void clib_standalone_init (void *memory, uword memory_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 363 | void qsort (void *base, uword n, uword size, |
| 364 | int (*)(const void *, const void *)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 365 | #endif |
| 366 | |
| 367 | /* Stack backtrace. */ |
| 368 | uword |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 369 | clib_backtrace (uword * callers, uword max_callers, uword n_frames_to_skip); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 370 | |
| 371 | #endif /* included_clib_h */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 372 | |
| 373 | /* |
| 374 | * fd.io coding-style-patch-verification: ON |
| 375 | * |
| 376 | * Local Variables: |
| 377 | * eval: (c-set-style "gnu") |
| 378 | * End: |
| 379 | */ |