mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 08:13:00 +00:00
make gcc stop nag about uninitialized value in 114: and make -O3 working
svn path=/trunk/; revision=16063
This commit is contained in:
parent
dc337def98
commit
5e0373034a
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ void do_all_timers(void)
|
||||||
// ReactOS Purpose: Create real kernel thread
|
// ReactOS Purpose: Create real kernel thread
|
||||||
int my_kernel_thread(int STDCALL (*handler)(void*), void* parm, int flags)
|
int my_kernel_thread(int STDCALL (*handler)(void*), void* parm, int flags)
|
||||||
{
|
{
|
||||||
HANDLE hThread;
|
HANDLE hThread = NULL;
|
||||||
//thread_handler=handler;
|
//thread_handler=handler;
|
||||||
//thread_parm=parm;
|
//thread_parm=parm;
|
||||||
//return 42; // PID :-)
|
//return 42; // PID :-)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue