Remove unneeded stack_check

This commit is contained in:
Jens K. Mueller 2012-08-26 15:38:33 +02:00
parent 1eb5119782
commit c881aca893

View file

@ -9,16 +9,6 @@ import std.datetime;
immutable uint yield_count = 1000; immutable uint yield_count = 1000;
immutable uint worker_count = 10; immutable uint worker_count = 10;
uint stack_check()
{
uint x;
asm
{
mov x,ESP;
}
return x;
}
void fiber_func() void fiber_func()
{ {
uint i = yield_count; uint i = yield_count;