Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: Source/wtf/ThreadSpecificWin.cpp

Issue 22433006: Remove dead code guarded by OS(WINDOWS) && USE(PTHREADS). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/wtf/ThreadingWin.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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,
(...skipping 10 matching lines...) Expand all
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)
32
33 namespace WTF { 31 namespace WTF {
34 32
35 static DoublyLinkedList<PlatformThreadSpecificKey>& destructorsList() 33 static DoublyLinkedList<PlatformThreadSpecificKey>& destructorsList()
36 { 34 {
37 DEFINE_STATIC_LOCAL(DoublyLinkedList<PlatformThreadSpecificKey>, staticList, ()); 35 DEFINE_STATIC_LOCAL(DoublyLinkedList<PlatformThreadSpecificKey>, staticList, ());
38 return staticList; 36 return staticList;
39 } 37 }
40 38
41 static Mutex& destructorsMutex() 39 static Mutex& destructorsMutex()
42 { 40 {
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 PlatformThreadSpecificKey* key = destructorsList().head(); 125 PlatformThreadSpecificKey* key = destructorsList().head();
128 while (key) { 126 while (key) {
129 PlatformThreadSpecificKey* nextKey = key->next(); 127 PlatformThreadSpecificKey* nextKey = key->next();
130 key->callDestructor(); 128 key->callDestructor();
131 key = nextKey; 129 key = nextKey;
132 } 130 }
133 } 131 }
134 132
135 } // namespace WTF 133 } // namespace WTF
136 134
137 #endif // !USE(PTHREADS)
138
139 #endif // OS(WINDOWS) 135 #endif // OS(WINDOWS)
OLDNEW
« no previous file with comments | « no previous file | Source/wtf/ThreadingWin.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698