Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "ARM EABI LICENCE.txt"
5 // which accompanies this distribution, and is available
6 // in kernel/eka/compsupp.
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file is part of drtrvct.dll and drtrvct_vfpv2.dll.
23 // TODO: Can this be removed?
24 EXPORT_C void _fp_init()
28 // TODO: Is this ever used?
29 EXPORT_C TAny * __rt_fp_status_addr()
31 TAny* aTls = Dll::Tls();
36 // If this is the first time we are called we need to set up some TLS for
37 // the FP status word.
39 TUint32* aReg = (TUint32*)User::AllocZ(sizeof(TUint32));
41 _LIT(KFpGeneralPanic, "FP Emulator");
45 TInt r = Dll::SetTls(aReg);
49 // if we get here we really in trouble. Just Panic.
50 User::Panic(KFpGeneralPanic, KErrGeneral);
54 // If we get here, we're toast anyway....
55 User::Panic(KFpGeneralPanic, KErrNoMemory);