libfringe/benches/swap.rs

29 lines
575 B
Rust
Raw Normal View History

2015-04-16 18:08:44 +08:00
// Copyright (c) 2015, edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
2015-02-03 03:17:23 +08:00
#![feature(test)]
2014-12-23 11:24:40 +08:00
extern crate test;
extern crate lwkt;
use lwkt::Context;
static mut ctx_slot: *mut Context<'static, lwkt::OsStack> = 0 as *mut Context<_>;
2014-12-23 11:24:40 +08:00
#[bench]
fn swap(b: &mut test::Bencher) {
unsafe {
let stack = lwkt::OsStack::new(4 << 20).unwrap();
let mut ctx = Context::new(stack, move || {
let ctx_ptr = ctx_slot;
loop {
(*ctx_ptr).swap()
}
});
2014-12-23 11:24:40 +08:00
ctx_slot = &mut ctx;
2014-12-23 11:24:40 +08:00
ctx.swap();
2014-12-23 11:24:40 +08:00
b.iter(|| ctx.swap());
2014-12-23 11:24:40 +08:00
}
}