os/kernelhwsrv/kerneltest/e32test/dll/t_dll1.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_dll1.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "t_dll.h"
sl@0
    19
sl@0
    20
const TInt KHeapSize=0x2000;
sl@0
    21
sl@0
    22
class TlsData
sl@0
    23
	{
sl@0
    24
public:
sl@0
    25
	TlsData() : iData(0x12345678),iTest1(0),iTest2(0),iServer(0) {}
sl@0
    26
	TInt Data() {return(iData);}
sl@0
    27
	void SetData(TInt aValue) {iData=aValue;}
sl@0
    28
public:
sl@0
    29
	TInt iData;
sl@0
    30
	TUint iTest1;
sl@0
    31
	TUint iTest2;
sl@0
    32
	TUint iServer;
sl@0
    33
	RSemaphore iSem;
sl@0
    34
	};
sl@0
    35
inline TlsData& Tls()
sl@0
    36
	{return(*((TlsData*)Dll::Tls()));}
sl@0
    37
sl@0
    38
EXPORT_C TInt TestDll1::Data()
sl@0
    39
//
sl@0
    40
// Return the current TLS data value
sl@0
    41
//
sl@0
    42
	{
sl@0
    43
sl@0
    44
	return(Tls().Data());
sl@0
    45
	}
sl@0
    46
sl@0
    47
EXPORT_C void TestDll1::SetData(TInt aValue)
sl@0
    48
//
sl@0
    49
// Return the current TLS data value
sl@0
    50
//
sl@0
    51
	{
sl@0
    52
sl@0
    53
	Tls().SetData(aValue);
sl@0
    54
	}
sl@0
    55
sl@0
    56
EXPORT_C TUint TestDll1::Test1()
sl@0
    57
//
sl@0
    58
// Return the test1 result.
sl@0
    59
//
sl@0
    60
	{
sl@0
    61
sl@0
    62
	return(Tls().iTest1);
sl@0
    63
	}
sl@0
    64
sl@0
    65
EXPORT_C TUint TestDll1::Test2()
sl@0
    66
//
sl@0
    67
// Return the test2 result.
sl@0
    68
//
sl@0
    69
	{
sl@0
    70
sl@0
    71
	return(Tls().iTest2);
sl@0
    72
	}
sl@0
    73
sl@0
    74
EXPORT_C TUint TestDll1::Server()
sl@0
    75
//
sl@0
    76
// Return the server result.
sl@0
    77
//
sl@0
    78
	{
sl@0
    79
sl@0
    80
	return(Tls().iServer);
sl@0
    81
	}
sl@0
    82
sl@0
    83
EXPORT_C RSemaphore TestDll1::Sem()
sl@0
    84
//
sl@0
    85
// Return the semaphore.
sl@0
    86
//
sl@0
    87
	{
sl@0
    88
sl@0
    89
	return(Tls().iSem);
sl@0
    90
	}
sl@0
    91
sl@0
    92
EXPORT_C TInt TestDll1::Attach(TBool aAttach)
sl@0
    93
	{
sl@0
    94
	TInt r = KErrNone;
sl@0
    95
	TlsData* pD;
sl@0
    96
	if (aAttach)
sl@0
    97
		{
sl@0
    98
		pD = new TlsData;
sl@0
    99
		r = Dll::SetTls(pD);
sl@0
   100
		__ASSERT_ALWAYS(r==KErrNone, User::Panic(_L("T_DLL1 att"),r));
sl@0
   101
		}
sl@0
   102
	else
sl@0
   103
		{
sl@0
   104
		delete &Tls();
sl@0
   105
		r = Dll::SetTls(NULL);
sl@0
   106
		__ASSERT_ALWAYS(r==KErrNone, User::Panic(_L("T_DLL1 det"),r));
sl@0
   107
		}
sl@0
   108
	return r;
sl@0
   109
    }
sl@0
   110
sl@0
   111
sl@0
   112
sl@0
   113
EXPORT_C TInt TestDll1::GlobalAlloc(TInt )
sl@0
   114
	{
sl@0
   115
	return KErrNone;
sl@0
   116
	}
sl@0
   117
EXPORT_C TBool TestDll1::GlobalAllocated()
sl@0
   118
	{
sl@0
   119
	return KErrNone;
sl@0
   120
	}
sl@0
   121
EXPORT_C TInt TestDll1::GlobalRead(TInt ,TDes8 &)
sl@0
   122
	{
sl@0
   123
	return KErrNone;
sl@0
   124
	}
sl@0
   125
EXPORT_C TInt TestDll1::GlobalWrite(TInt ,const TDesC8 &)
sl@0
   126
	{
sl@0
   127
	return KErrNone;
sl@0
   128
	}
sl@0
   129