searchengine/cpix/cpix/src/cpixthreadlocaldata.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 02 Sep 2010 21:37:32 +0300
changeset 18 3e1f76dd2722
parent 0 671dee74050a
permissions -rw-r--r--
Revision: 201033 Kit: 201035

/*
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "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: 
*
*/

#include "cpixthreadlocaldata.h"

namespace Cpix
{
    bool ThreadLocalData::isSlaveThread() const
    {
        return isSlaveThread_;
    }


    ThreadLocalData::ThreadLocalData(bool isSlaveThread)
        : isSlaveThread_(isSlaveThread)
    {
        ;
    }



    void ThreadLocalData::Destroy(void * that)
    {
        delete reinterpret_cast<ThreadLocalData*>(that);
    }


    pthread_key_t ThreadLocalDataKey;
}