sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "lowmem.h"
|
sl@0
|
21 |
#include "glibbackend_wsd.h"
|
sl@0
|
22 |
#include <pthread.h>
|
sl@0
|
23 |
#include <stdlib.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
#if EMULATOR
|
sl@0
|
26 |
|
sl@0
|
27 |
PLS(key,lowmem,pthread_key_t)
|
sl@0
|
28 |
PLS(key_once,lowmem,pthread_once_t)
|
sl@0
|
29 |
|
sl@0
|
30 |
#define key (*FUNCTION_NAME(key,lowmem )())
|
sl@0
|
31 |
#define key_once (*FUNCTION_NAME(key_once,lowmem )())
|
sl@0
|
32 |
|
sl@0
|
33 |
#else
|
sl@0
|
34 |
pthread_key_t key;
|
sl@0
|
35 |
pthread_once_t key_once = PTHREAD_ONCE_INIT;
|
sl@0
|
36 |
#endif /* EMULATOR */
|
sl@0
|
37 |
|
sl@0
|
38 |
static void make_key()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
pthread_key_create(&key,NULL);
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
EXPORT_C mem_info * get_thread_specific_data()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
pthread_once(&key_once, make_key);
|
sl@0
|
46 |
return (mem_info *)pthread_getspecific(key);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
/* This function sets the thread specfic data which is of the type *
|
sl@0
|
50 |
* struct mem_info.The function return 0 in case of success and a *
|
sl@0
|
51 |
* non zero value in case of failure. *
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
EXPORT_C int set_thread_specific_data(mem_info *m)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
pthread_once(&key_once, make_key);
|
sl@0
|
56 |
if(pthread_setspecific(key,(void *)m))
|
sl@0
|
57 |
{
|
sl@0
|
58 |
return 1;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
return 0;
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
EXPORT_C int push(cleanUpStack *cs,void *ptr)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
if((*cs).top == 999)
|
sl@0
|
67 |
return -1;
|
sl@0
|
68 |
else
|
sl@0
|
69 |
(*cs).ptr[++((*cs).top)] = ptr;
|
sl@0
|
70 |
return 0;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
EXPORT_C void * pop(cleanUpStack *cs)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
return (*cs).ptr[((*cs).top)--];
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
EXPORT_C void clearCleanUpStack(cleanUpStack *cs)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
(*cs).top = -1;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
EXPORT_C void destroyCleanUpStack(cleanUpStack *cs)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
while((*cs).top != -1)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
free((*cs).ptr[((*cs).top)--]);
|
sl@0
|
88 |
}
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
EXPORT_C void findAndDestroy(cleanUpStack *cs,void *ptr)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
int i;
|
sl@0
|
95 |
for(i = 0; i < (*cs).top ; i++ )
|
sl@0
|
96 |
{
|
sl@0
|
97 |
if((*cs).ptr[i] == ptr)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
(*cs).ptr[i] = NULL;
|
sl@0
|
100 |
break;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
}
|
sl@0
|
103 |
}
|