Sat, 29 Dec 2012 18:08:23 +0100
added ldap authentication
1 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
4 | * Copyright 2008 Sun Microsystems, Inc. All rights reserved. | |
5 | * | |
6 | * THE BSD LICENSE | |
7 | * | |
8 | * Redistribution and use in source and binary forms, with or without | |
9 | * modification, are permitted provided that the following conditions are met: | |
10 | * | |
11 | * Redistributions of source code must retain the above copyright notice, this | |
12 | * list of conditions and the following disclaimer. | |
13 | * Redistributions in binary form must reproduce the above copyright notice, | |
14 | * this list of conditions and the following disclaimer in the documentation | |
15 | * and/or other materials provided with the distribution. | |
16 | * | |
17 | * Neither the name of the nor the names of its contributors may be | |
18 | * used to endorse or promote products derived from this software without | |
19 | * specific prior written permission. | |
20 | * | |
21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
22 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
23 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
24 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER | |
25 | * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
26 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
27 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | |
28 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
29 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
30 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
31 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
32 | */ | |
33 | ||
34 | /* | |
35 | * systhr.c: Abstracted threading mechanisms | |
36 | * | |
37 | * Rob McCool | |
38 | */ | |
39 | ||
40 | ||
41 | #include "systhr.h" | |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
42 | //include "ereport.h" |
1 | 43 | |
44 | #include "prinit.h" | |
45 | #include "prthread.h" | |
46 | #include "private/pprthred.h" | |
47 | ||
48 | #include "systems.h" | |
49 | ||
50 | #ifdef XP_UNIX | |
51 | #include <poll.h> | |
52 | #endif | |
53 | ||
54 | #define DEFAULT_STACKSIZE (64*1024) | |
55 | ||
56 | static unsigned long _systhr_stacksize = DEFAULT_STACKSIZE; | |
57 | ||
58 | NSAPI_PUBLIC | |
59 | void systhread_set_default_stacksize(unsigned long size) | |
60 | { | |
61 | _systhr_stacksize = size; | |
62 | } | |
63 | ||
64 | ||
65 | ||
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
66 | SYS_THREAD systhread_start(int prio, int stksz, thrstartfunc fn, void *arg) { |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
67 | pthread_t thr = 0; |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
68 | pthread_attr_t attr; |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
69 | |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
70 | pthread_attr_init(&attr); |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
71 | if(stksz) { |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
72 | pthread_attr_setstacksize(&attr, stksz); |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
73 | } |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
74 | |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
75 | if(pthread_create(&thr, &attr, (posix_thrstartfunc)fn, arg) != 0) { |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
76 | /* error */ |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
77 | } |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
78 | |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
79 | return thr; |
1 | 80 | } |
81 | ||
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
82 | SYS_THREAD systhread_current(void) { |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
83 | return pthread_self(); |
1 | 84 | } |
85 | ||
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
86 | void systhread_yield(void) |
1 | 87 | { |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
88 | sched_yield(); |
1 | 89 | } |
90 | ||
91 | ||
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
92 | void systhread_timerset(int usec) |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
93 | { |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
94 | |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
95 | } |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
96 | |
1 | 97 | SYS_THREAD systhread_attach(void) |
98 | { | |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
99 | /* TODO: what to do? */ |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
100 | return 0; |
1 | 101 | } |
102 | ||
103 | void systhread_detach(SYS_THREAD thr) | |
104 | { | |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
105 | pthread_detach(thr); |
1 | 106 | } |
107 | ||
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
108 | void systhread_terminate(SYS_THREAD thr) |
1 | 109 | { |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
110 | //PR_Interrupt((PRThread *)thr); |
1 | 111 | } |
112 | ||
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
113 | void systhread_sleep(int msec) |
1 | 114 | { |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
115 | if(msec > 0) { |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
116 | poll(NULL, NULL, msec); |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
117 | } else { |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
118 | sched_yield(); |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
119 | } |
1 | 120 | } |
121 | ||
122 | NSAPI_PUBLIC void systhread_init(char *name) | |
123 | { | |
124 | if (!PR_Initialized()) { | |
125 | PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 256); | |
126 | } | |
127 | // XXX: ruslan - this bug can potentially exist on all plafroms due to | |
128 | // possible priority inversion on NSPR spin locks. This code will | |
129 | // need to be remove as we get new NSPR drop | |
130 | // <WORKAROUND> | |
131 | /* VB: This is to fix bug# 364813 coupled with NSPR not wanting to patch | |
132 | their problems. The fix is to prevent NSPR itself from | |
133 | using atomic stacks. | |
134 | */ | |
135 | // ruslan: this problem exists on DEC also. We will roll it back when | |
136 | // we have the right fix from NSPR group. It has smth. to do with | |
137 | // atomic operations on DEC, it's an assembly code which is different | |
138 | // for every platform. NSPR_FD_CACHE_SIZE_HIGH env var will cause the | |
139 | // same effect as this fix. Debug version of NSPR always works as it doesn't | |
140 | // have FD stack. | |
141 | ||
142 | int maxPRFdCache = 8192; | |
143 | PR_SetFDCacheSize(0, maxPRFdCache); | |
144 | // </WORKAROUND> | |
145 | } | |
146 | ||
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
147 | /* |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
148 | * TODO: reimplement with pthread api |
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
149 | */ |
1 | 150 | |
151 | NSAPI_PUBLIC int systhread_newkey() | |
152 | { | |
153 | uintn newkey; | |
154 | ||
155 | PR_NewThreadPrivateIndex(&newkey, NULL); | |
156 | return (newkey); | |
157 | } | |
158 | ||
159 | NSAPI_PUBLIC void *systhread_getdata(int key) | |
160 | { | |
161 | return PR_GetThreadPrivate(key); | |
162 | } | |
163 | ||
164 | NSAPI_PUBLIC void systhread_setdata(int key, void *data) | |
165 | { | |
166 | PR_SetThreadPrivate(key, data); | |
167 | } | |
168 | ||
169 | NSAPI_PUBLIC void systhread_dummy(void) | |
170 | { | |
171 | } |