[Issue 6463] Segfault on writeln() from a Fiber

2011-08-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6463


d...@dawgfoto.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


--- Comment #5 from d...@dawgfoto.de 2011-08-17 09:04:13 PDT ---
I can confirm this crash.
The reason though is not strictly a bug.
What you observe is a stack overflow due to big local buffers
in std.format.formatValue and even bigger ones in libc's vfprintf.
Fibers are allocated with a default stack size of one memory page (usually 4096
Bytes), but calling these two function already allocates 3KB stack space.

As a workaround you can increase the stack size in the Fiber constructor. I'm
afraid there is no easy solution to determine the smallest possible stack size
that is safe for all your code paths. In this example 8K = 'this() {
super(run, 8192); }' will suffice.

martin

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6463] Segfault on writeln() from a Fiber

2011-08-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6463



--- Comment #3 from Danny Arends danny.are...@gmail.com 2011-08-16 01:02:02 
PDT ---
Created an attachment (id=1017)
Segfault from fiber

The file I forgot to attach

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6463] Segfault on writeln() from a Fiber

2011-08-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6463



--- Comment #4 from Danny Arends danny.are...@gmail.com 2011-08-16 01:02:30 
PDT ---
Sorry forgot to attach the file.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6463] Segfault on writeln() from a Fiber

2011-08-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6463


d...@dawgfoto.de changed:

   What|Removed |Added

 CC||d...@dawgfoto.de


--- Comment #2 from d...@dawgfoto.de 2011-08-15 21:22:58 PDT ---
Can you please post the code.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6463] Segfault on writeln() from a Fiber

2011-08-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6463



--- Comment #1 from Danny Arends danny.are...@gmail.com 2011-08-11 06:21:47 
PDT ---
Tested on other systems: 32bit Debian Squeeze and Win32, this does not happen
and I get the expected output of:
15
15
Done

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---