comparison gcc/gthr-single.h @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
211 __gthread_active_p (void) 211 __gthread_active_p (void)
212 { 212 {
213 return 0; 213 return 0;
214 } 214 }
215 215
216 static inline int 216 static inline int
217 __gthread_once (__gthread_once_t *__once UNUSED, void (*__func) (void) UNUSED) 217 __gthread_once (__gthread_once_t *__once UNUSED, void (*__func) (void) UNUSED)
218 { 218 {
219 return 0; 219 return 0;
220 } 220 }
221 221
222 static inline int UNUSED 222 static inline int UNUSED
223 __gthread_key_create (__gthread_key_t *__key UNUSED, void (*__func) (void *) UNUSED) 223 __gthread_key_create (__gthread_key_t *__key UNUSED, void (*__func) (void *) UNUSED)
224 { 224 {
225 return 0; 225 return 0;
226 } 226 }
228 static int UNUSED 228 static int UNUSED
229 __gthread_key_delete (__gthread_key_t __key UNUSED) 229 __gthread_key_delete (__gthread_key_t __key UNUSED)
230 { 230 {
231 return 0; 231 return 0;
232 } 232 }
233 233
234 static inline void * 234 static inline void *
235 __gthread_getspecific (__gthread_key_t __key UNUSED) 235 __gthread_getspecific (__gthread_key_t __key UNUSED)
236 { 236 {
237 return 0; 237 return 0;
238 } 238 }
239 239
240 static inline int 240 static inline int
241 __gthread_setspecific (__gthread_key_t __key UNUSED, const void *__v UNUSED) 241 __gthread_setspecific (__gthread_key_t __key UNUSED, const void *__v UNUSED)
242 { 242 {
243 return 0; 243 return 0;
244 } 244 }
245 245