Add breakpoint utility function.

This commit is contained in:
Josh Matthews 2014-09-16 10:57:00 -04:00
parent 8a02fe0fc6
commit efb59fde92

View file

@ -44,3 +44,7 @@ pub mod task;
pub mod time;
pub mod vec;
pub mod workqueue;
pub fn breakpoint() {
unsafe { ::std::intrinsics::breakpoint() };
}