[Softpear-cvs] softpear/src/cpu cpu.h,1.2,1.3
Status: Pre-Alpha
Brought to you by:
mist
|
From: <mas...@us...> - 2005-03-15 17:03:12
|
Update of /cvsroot/softpear/softpear/src/cpu In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22357/src/cpu Modified Files: cpu.h Log Message: fixed memory leak causing threads not to free their malloc'ed memory the thread object of the current thread is now always accessable via the local gCPU structure Index: cpu.h =================================================================== RCS file: /cvsroot/softpear/softpear/src/cpu/cpu.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- cpu.h 14 Mar 2005 22:55:10 -0000 1.2 +++ cpu.h 15 Mar 2005 17:03:02 -0000 1.3 @@ -29,7 +29,7 @@ uint64 ppc_get_timebase_frequency(int cpu); PPC_CPU_State *ppc_cpu_init(); -void ppc_cpu_deinit(); +void ppc_cpu_deinit(PPC_CPU_State*); void ppc_cpu_init_config(); void ppc_cpu_stop(); |