This website requires JavaScript.
Explore
Help
Sign In
morgan
/
libfringe
forked from
M-Labs/libfringe
Watch
1
Star
0
Fork
You've already forked libfringe
0
Code
Pull Requests
Activity
f7511dc2c1
libfringe
/
src
/
stack.rs
5 lines
84 B
Rust
Raw
Normal View
History
Unescape
Escape
complete rewrite! featuring 7ns inlineable context switches, no more separately-built assembly objects, and a vastly nicer interface. incontext/outcontext are no more, context switch calls now take a single context structure, which functions as both. everything now also functions without any heap allocations -- for the context setup, only an FnOnce() value is necessary.
2015-01-14 15:31:17 +08:00
pub
trait
Stack
{
fn
top
(
&
mut
self
)
->
*
mut
u8
;
fn
limit
(
&
self
)
->
*
const
u8
;
initial commit
2014-12-23 11:24:40 +08:00
}