Re: Inquiry about GCC Summer Of Code project idea.
Greetings! The results are finally out, and it appears that my project proposal has been accepted for the GCC! I would like to thank you all that contributed in one way or another. Special thanks go to both Ian Lance Taylor and Thomas Schwinge for accepting the proposal, taking the time to mentor me, and giving me the chance to participate in the development of these two fantastic pieces of software (both the GCC and the HURD). As a final word, I would like to let you know that I will do my very best to perform as expected and not disappoint you guys. Thanks again. * * *--* *Fotis 'NlightNFotis' Koutoulakis* * * *- "Non semper aestas erit; venit hiems."*
Re: kern/thread.c (stack_alloc_hits, stack_alloc_misses): Remove unused variables
Em 26-05-2013 22:39, Samuel Thibault escreveu: Miguel Figueiredo, le Sun 26 May 2013 18:28:55 +0100, a écrit : 2013-05-26 Miguel Figueiredo * kern/thread.c (stack_alloc_hits, stack_alloc_misses): Remove unused variables I wouldn't do that: they can be read from the debugger. Samuel in case you feel it is worth it: diff --git a/kern/thread.c b/kern/thread.c index 79f526a..574f184 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -163,10 +163,14 @@ boolean_t stack_alloc_try( if (stack != 0) { stack_attach(thread, stack, resume); +#if MACH_DEBUG stack_alloc_hits++; +#endif /* MACH_DEBUG */ return TRUE; } else { +#if MACH_DEBUG stack_alloc_misses++; +#endif /* MACH_DEBUG */ return FALSE; } } -- Melhores cumprimentos/Best regards, Miguel Figueiredo
Thanks for accepting my proposal
Dear all. Thank you for accepting my proposal. I am so happy and excited when I read the accept email this morning. Thank you all give me the chance to join this wonderful project. Many thanks to my mentor Thomas Schwinge for your patient mentoring. I will show my best to the open source world! -- Yue Lu (陆岳)