diff --git a/components/util/lib.rs b/components/util/lib.rs index 0c186fdb690..b543df42e80 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -46,3 +46,7 @@ pub mod task; pub mod time; pub mod vec; pub mod workqueue; + +pub fn breakpoint() { + unsafe { ::std::intrinsics::breakpoint() }; +}