| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Jian Li <jianli@chromium.org> | 2 * Copyright (C) 2009 Jian Li <jianli@chromium.org> |
| 3 * Copyright (C) 2012 Patrick Gansterer <paroga@paroga.com> | 3 * Copyright (C) 2012 Patrick Gansterer <paroga@paroga.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 * | 19 * |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #include "config.h" | 22 #include "config.h" |
| 23 #include "ThreadSpecific.h" | 23 #include "ThreadSpecific.h" |
| 24 | 24 |
| 25 #if OS(WINDOWS) | 25 #if OS(WINDOWS) |
| 26 | 26 |
| 27 #include "StdLibExtras.h" | 27 #include "StdLibExtras.h" |
| 28 #include "ThreadingPrimitives.h" | 28 #include "ThreadingPrimitives.h" |
| 29 #include <wtf/DoublyLinkedList.h> | 29 #include "wtf/DoublyLinkedList.h" |
| 30 | 30 |
| 31 #if !USE(PTHREADS) | 31 #if !USE(PTHREADS) |
| 32 | 32 |
| 33 namespace WTF { | 33 namespace WTF { |
| 34 | 34 |
| 35 static DoublyLinkedList<PlatformThreadSpecificKey>& destructorsList() | 35 static DoublyLinkedList<PlatformThreadSpecificKey>& destructorsList() |
| 36 { | 36 { |
| 37 DEFINE_STATIC_LOCAL(DoublyLinkedList<PlatformThreadSpecificKey>, staticList,
()); | 37 DEFINE_STATIC_LOCAL(DoublyLinkedList<PlatformThreadSpecificKey>, staticList,
()); |
| 38 return staticList; | 38 return staticList; |
| 39 } | 39 } |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 key->callDestructor(); | 130 key->callDestructor(); |
| 131 key = nextKey; | 131 key = nextKey; |
| 132 } | 132 } |
| 133 } | 133 } |
| 134 | 134 |
| 135 } // namespace WTF | 135 } // namespace WTF |
| 136 | 136 |
| 137 #endif // !USE(PTHREADS) | 137 #endif // !USE(PTHREADS) |
| 138 | 138 |
| 139 #endif // OS(WINDOWS) | 139 #endif // OS(WINDOWS) |
| OLD | NEW |