sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // e32test\dll\t_dll2.cpp sl@0: // sl@0: // sl@0: sl@0: sl@0: #include "t_dll.h" sl@0: sl@0: const TInt KHeapSize=0x2000; sl@0: sl@0: class TlsData sl@0: { sl@0: public: sl@0: TlsData() : iData(0xabcdabcd),iTest1(0),iTest2(0),iServer(0) {} sl@0: TInt Data() {return(iData);} sl@0: void SetData(TInt aValue) {iData=aValue;} sl@0: public: sl@0: TInt iData; sl@0: TUint iTest1; sl@0: TUint iTest2; sl@0: TUint iServer; sl@0: RSemaphore iSem; sl@0: }; sl@0: inline TlsData& Tls() sl@0: {return(*((TlsData*)Dll::Tls()));} sl@0: sl@0: EXPORT_C TInt TestDll2::Data() sl@0: // sl@0: // Return the current TLS data value sl@0: // sl@0: { sl@0: sl@0: return(Tls().Data()); sl@0: } sl@0: sl@0: EXPORT_C void TestDll2::SetData(TInt aValue) sl@0: // sl@0: // Return the current TLS data value sl@0: // sl@0: { sl@0: sl@0: Tls().SetData(aValue); sl@0: } sl@0: sl@0: EXPORT_C TUint TestDll2::Test1() sl@0: // sl@0: // Return the test1 result. sl@0: // sl@0: { sl@0: sl@0: return(Tls().iTest1); sl@0: } sl@0: sl@0: EXPORT_C TUint TestDll2::Test2() sl@0: // sl@0: // Return the test2 result. sl@0: // sl@0: { sl@0: sl@0: return(Tls().iTest2); sl@0: } sl@0: sl@0: EXPORT_C TUint TestDll2::Server() sl@0: // sl@0: // Return the server result. sl@0: // sl@0: { sl@0: sl@0: return(Tls().iServer); sl@0: } sl@0: sl@0: EXPORT_C RSemaphore TestDll2::Sem() sl@0: // sl@0: // Return the semaphore. sl@0: // sl@0: { sl@0: sl@0: return(Tls().iSem); sl@0: } sl@0: sl@0: EXPORT_C TInt TestDll2::Attach(TBool aAttach) sl@0: { sl@0: TInt r = KErrNone; sl@0: TlsData* pD; sl@0: if (aAttach) sl@0: { sl@0: pD = new TlsData; sl@0: r = Dll::SetTls(pD); sl@0: __ASSERT_ALWAYS(r==KErrNone, User::Panic(_L("T_DLL2 att"),r)); sl@0: } sl@0: else sl@0: { sl@0: delete &Tls(); sl@0: r = Dll::SetTls(NULL); sl@0: __ASSERT_ALWAYS(r==KErrNone, User::Panic(_L("T_DLL2 det"),r)); sl@0: } sl@0: return r; sl@0: } sl@0: sl@0: sl@0: EXPORT_C TInt TestDll2::GlobalAlloc(TInt ) sl@0: { sl@0: return KErrNotSupported; sl@0: } sl@0: EXPORT_C TBool TestDll2::GlobalAllocated() sl@0: { sl@0: return KErrNotSupported; sl@0: } sl@0: EXPORT_C TInt TestDll2::GlobalRead(TInt ,TDes8 &) sl@0: { sl@0: return KErrNotSupported; sl@0: } sl@0: EXPORT_C TInt TestDll2::GlobalWrite(TInt ,const TDesC8 &) sl@0: { sl@0: return KErrNotSupported; sl@0: } sl@0: