macro_rules! range_pop {
    () => { ... };
}
Expand description

Ends a nested thread range.

Returns

  • returns the level of the range being ended. If an error occurs a negative value is returned on the current thread.

Examples

use nvtx::{range_pop, range_push};
range_push!("Hello World!");
range_pop!();