os/kernelhwsrv/kerneltest/e32test/dll/t_dll2.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32test\dll\t_dll2.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
sl@0
    19
#include "t_dll.h"
sl@0
    20
sl@0
    21
const TInt KHeapSize=0x2000;
sl@0
    22
sl@0
    23
class TlsData
sl@0
    24
	{
sl@0
    25
public:
sl@0
    26
	TlsData() : iData(0xabcdabcd),iTest1(0),iTest2(0),iServer(0) {}
sl@0
    27
	TInt Data() {return(iData);}
sl@0
    28
	void SetData(TInt aValue) {iData=aValue;}
sl@0
    29
public:
sl@0
    30
	TInt iData;
sl@0
    31
	TUint iTest1;
sl@0
    32
	TUint iTest2;
sl@0
    33
	TUint iServer;
sl@0
    34
	RSemaphore iSem;
sl@0
    35
	};
sl@0
    36
inline TlsData& Tls()
sl@0
    37
	{return(*((TlsData*)Dll::Tls()));}
sl@0
    38
sl@0
    39
EXPORT_C TInt TestDll2::Data()
sl@0
    40
//
sl@0
    41
// Return the current TLS data value
sl@0
    42
//
sl@0
    43
	{
sl@0
    44
sl@0
    45
	return(Tls().Data());
sl@0
    46
	}
sl@0
    47
sl@0
    48
EXPORT_C void TestDll2::SetData(TInt aValue)
sl@0
    49
//
sl@0
    50
// Return the current TLS data value
sl@0
    51
//
sl@0
    52
	{
sl@0
    53
sl@0
    54
	Tls().SetData(aValue);
sl@0
    55
	}
sl@0
    56
sl@0
    57
EXPORT_C TUint TestDll2::Test1()
sl@0
    58
//
sl@0
    59
// Return the test1 result.
sl@0
    60
//
sl@0
    61
	{
sl@0
    62
sl@0
    63
	return(Tls().iTest1);
sl@0
    64
	}
sl@0
    65
sl@0
    66
EXPORT_C TUint TestDll2::Test2()
sl@0
    67
//
sl@0
    68
// Return the test2 result.
sl@0
    69
//
sl@0
    70
	{
sl@0
    71
sl@0
    72
	return(Tls().iTest2);
sl@0
    73
	}
sl@0
    74
sl@0
    75
EXPORT_C TUint TestDll2::Server()
sl@0
    76
//
sl@0
    77
// Return the server result.
sl@0
    78
//
sl@0
    79
	{
sl@0
    80
sl@0
    81
	return(Tls().iServer);
sl@0
    82
	}
sl@0
    83
sl@0
    84
EXPORT_C RSemaphore TestDll2::Sem()
sl@0
    85
//
sl@0
    86
// Return the semaphore.
sl@0
    87
//
sl@0
    88
	{
sl@0
    89
sl@0
    90
	return(Tls().iSem);
sl@0
    91
	}
sl@0
    92
sl@0
    93
EXPORT_C TInt TestDll2::Attach(TBool aAttach)
sl@0
    94
	{
sl@0
    95
	TInt r = KErrNone;
sl@0
    96
	TlsData* pD;
sl@0
    97
	if (aAttach)
sl@0
    98
		{
sl@0
    99
		pD = new TlsData;
sl@0
   100
		r = Dll::SetTls(pD);
sl@0
   101
		__ASSERT_ALWAYS(r==KErrNone, User::Panic(_L("T_DLL2 att"),r));
sl@0
   102
		}
sl@0
   103
	else
sl@0
   104
		{
sl@0
   105
		delete &Tls();
sl@0
   106
		r = Dll::SetTls(NULL);
sl@0
   107
		__ASSERT_ALWAYS(r==KErrNone, User::Panic(_L("T_DLL2 det"),r));
sl@0
   108
		}
sl@0
   109
	return r;
sl@0
   110
    }
sl@0
   111
sl@0
   112
sl@0
   113
EXPORT_C TInt TestDll2::GlobalAlloc(TInt )
sl@0
   114
	{
sl@0
   115
	return KErrNotSupported;
sl@0
   116
	}
sl@0
   117
EXPORT_C TBool TestDll2::GlobalAllocated()
sl@0
   118
	{
sl@0
   119
	return KErrNotSupported;
sl@0
   120
	}
sl@0
   121
EXPORT_C TInt TestDll2::GlobalRead(TInt ,TDes8 &)
sl@0
   122
	{
sl@0
   123
	return KErrNotSupported;
sl@0
   124
	}
sl@0
   125
EXPORT_C TInt TestDll2::GlobalWrite(TInt ,const TDesC8 &)
sl@0
   126
	{
sl@0
   127
	return KErrNotSupported;
sl@0
   128
	}
sl@0
   129