1 // Copyright © 2022 Intel Corporation 2 // 3 // SPDX-License-Identifier: Apache-2.0 4 // 5 6 #[macro_export] 7 macro_rules! trace_scoped { 8 ($event:expr) => {}; 9 } 10 11 #[macro_export] 12 macro_rules! trace_point { 13 ($event:expr) => {}; 14 } 15 16 pub fn end() {} 17 pub fn start() {} 18