sl@0: /* sl@0: * Copyright (c) 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 "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: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #include sl@0: #include "glibbackend_wsd.h" sl@0: #include "glibbackendinternal.h" sl@0: sl@0: #if EMULATOR sl@0: #include "pls.h" // For emulator WSD API sl@0: const TUid KGlibbackendUid3 = {0x10282414}; // This is the UID of the library sl@0: sl@0: int InitializeWsd(struct global_struct* g) sl@0: { sl@0: g->VARIABLE_NAME(key_once,lowmem) = PTHREAD_ONCE_INIT; sl@0: InitGLIBHeap(g->_iPrivateHeap); sl@0: return KErrNone; sl@0: } sl@0: sl@0: struct global_struct *Glibbackend_ImpurePtr() sl@0: { sl@0: #if defined(__WINSCW__) || defined(__WINS__) sl@0: sl@0: // Access the PLS of this process sl@0: struct global_struct* p = Pls(KGlibbackendUid3, &InitializeWsd); sl@0: return p; sl@0: sl@0: #else sl@0: sl@0: return NULL; sl@0: sl@0: #endif sl@0: sl@0: } sl@0: sl@0: //Implementation of private heap for glib sl@0: #ifdef __WINSCW__ sl@0: RHeap* PrivateHeap() sl@0: { sl@0: return (Glibbackend_ImpurePtr()->_iPrivateHeap); sl@0: } sl@0: #define iPrivateHeap (PrivateHeap()) sl@0: #else sl@0: RHeap* iPrivateHeap; sl@0: #endif // WINSCW sl@0: sl@0: sl@0: #endif /* EMULATOR */ sl@0: