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

Side by Side Diff: sky/engine/wtf/ThreadingPthreads.cpp

Issue 746023002: Make absolute and sort all Sky headers (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/wtf/ThreadingPrimitives.h ('k') | sky/engine/wtf/TreeNode.h » ('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) 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com) 3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com)
4 * Copyright (C) 2011 Research In Motion Limited. All rights reserved. 4 * Copyright (C) 2011 Research In Motion Limited. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 10 matching lines...) Expand all
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "sky/engine/config.h"
32 #include "wtf/Threading.h" 32 #include "sky/engine/wtf/Threading.h"
33 33
34 #if USE(PTHREADS) 34 #if USE(PTHREADS)
35 35
36 #include "wtf/DateMath.h" 36 #include <errno.h>
37 #include "wtf/HashMap.h" 37 #include "sky/engine/wtf/DateMath.h"
38 #include "wtf/OwnPtr.h" 38 #include "sky/engine/wtf/HashMap.h"
39 #include "wtf/PassOwnPtr.h" 39 #include "sky/engine/wtf/OwnPtr.h"
40 #include "wtf/StdLibExtras.h" 40 #include "sky/engine/wtf/PassOwnPtr.h"
41 #include "wtf/ThreadIdentifierDataPthreads.h" 41 #include "sky/engine/wtf/StdLibExtras.h"
42 #include "wtf/ThreadSpecific.h" 42 #include "sky/engine/wtf/ThreadIdentifierDataPthreads.h"
43 #include "wtf/ThreadingPrimitives.h" 43 #include "sky/engine/wtf/ThreadSpecific.h"
44 #include "wtf/WTFThreadData.h" 44 #include "sky/engine/wtf/ThreadingPrimitives.h"
45 #include "wtf/dtoa.h" 45 #include "sky/engine/wtf/WTFThreadData.h"
46 #include "sky/engine/wtf/dtoa.h"
46 #include "wtf/dtoa/cached-powers.h" 47 #include "wtf/dtoa/cached-powers.h"
47 #include <errno.h>
48 48
49 #include <limits.h> 49 #include <limits.h>
50 #include <sched.h> 50 #include <sched.h>
51 #include <sys/time.h> 51 #include <sys/time.h>
52 52
53 namespace WTF { 53 namespace WTF {
54 54
55 class PthreadState { 55 class PthreadState {
56 WTF_MAKE_FAST_ALLOCATED; 56 WTF_MAKE_FAST_ALLOCATED;
57 public: 57 public:
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 320
321 void ThreadCondition::broadcast() 321 void ThreadCondition::broadcast()
322 { 322 {
323 int result = pthread_cond_broadcast(&m_condition); 323 int result = pthread_cond_broadcast(&m_condition);
324 ASSERT_UNUSED(result, !result); 324 ASSERT_UNUSED(result, !result);
325 } 325 }
326 326
327 } // namespace WTF 327 } // namespace WTF
328 328
329 #endif // USE(PTHREADS) 329 #endif // USE(PTHREADS)
OLDNEW
« no previous file with comments | « sky/engine/wtf/ThreadingPrimitives.h ('k') | sky/engine/wtf/TreeNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698