(attr: &liq_attr)
| 410 | #[no_mangle] |
| 411 | #[inline(never)] |
| 412 | pub extern "C" fn liq_histogram_create(attr: &liq_attr) -> Option<Box<liq_histogram>> { |
| 413 | if bad_object!(attr, LIQ_ATTR_MAGIC) { return None; } |
| 414 | Some(Box::new(liq_histogram { |
| 415 | magic_header: LIQ_HISTOGRAM_MAGIC, |
| 416 | inner: Histogram::new(&attr.inner), |
| 417 | })) |
| 418 | } |
| 419 | |
| 420 | #[no_mangle] |
| 421 | #[inline(never)] |