It happens here, at trunk/Kernel/Core/ADC/Scheduler.cs, line 50:

            ThreadScheduled[i] = newThread;

ThreadScheduled is a private static field of the Scheduler class, of
type void**. Removing this line causes the AOT to crash at the next
place that this operation is done. Changing this line to
*(ThreadScheduled + i) = newThread results in the same exception.


-- 
fury

long name: William Lahti
handle :: fury
freenode :: xfury
blog :: http://xfurious.blogspot.com/

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
SharpOS-Developers mailing list
SharpOS-Developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sharpos-developers

Reply via email to