--- a/kernel/eka/euser/epoc/arm/uc_exe.cpp Fri Aug 06 10:53:45 2010 +0100
+++ b/kernel/eka/euser/epoc/arm/uc_exe.cpp Fri Aug 13 14:17:31 2010 +0100
@@ -74,13 +74,11 @@
TInt CallThrdProcEntry(TInt (*aFn)(void*), void* aPtr, TInt aNotFirst);
-__WEAK__ void run_static_dtors(void);
+void run_static_dtors(void);
void globalDestructorFunc()
{
- int call_static_dtors = (int)run_static_dtors;
- if (call_static_dtors)
- run_static_dtors();
+ run_static_dtors();
}
void RunThread(TBool aNotFirst, SThreadCreateInfo& aInfo)