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