Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #include "glibbackend_wsd.h"
27 PLS(key,lowmem,pthread_key_t)
28 PLS(key_once,lowmem,pthread_once_t)
30 #define key (*FUNCTION_NAME(key,lowmem )())
31 #define key_once (*FUNCTION_NAME(key_once,lowmem )())
35 pthread_once_t key_once = PTHREAD_ONCE_INIT;
38 static void make_key()
40 pthread_key_create(&key,NULL);
43 EXPORT_C mem_info * get_thread_specific_data()
45 pthread_once(&key_once, make_key);
46 return (mem_info *)pthread_getspecific(key);
49 /* This function sets the thread specfic data which is of the type *
50 * struct mem_info.The function return 0 in case of success and a *
51 * non zero value in case of failure. *
53 EXPORT_C int set_thread_specific_data(mem_info *m)
55 pthread_once(&key_once, make_key);
56 if(pthread_setspecific(key,(void *)m))
64 EXPORT_C int push(cleanUpStack *cs,void *ptr)
69 (*cs).ptr[++((*cs).top)] = ptr;
73 EXPORT_C void * pop(cleanUpStack *cs)
75 return (*cs).ptr[((*cs).top)--];
78 EXPORT_C void clearCleanUpStack(cleanUpStack *cs)
83 EXPORT_C void destroyCleanUpStack(cleanUpStack *cs)
85 while((*cs).top != -1)
87 free((*cs).ptr[((*cs).top)--]);
92 EXPORT_C void findAndDestroy(cleanUpStack *cs,void *ptr)
95 for(i = 0; i < (*cs).top ; i++ )
97 if((*cs).ptr[i] == ptr)