| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 4 * Copyright (C) 2009 Torch Mobile, Inc. All rights reserved. | 4 * Copyright (C) 2009 Torch Mobile, Inc. 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA | 83 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
| 84 */ | 84 */ |
| 85 | 85 |
| 86 #include "wtf/Threading.h" | 86 #include "wtf/Threading.h" |
| 87 | 87 |
| 88 #if OS(WIN) | 88 #if OS(WIN) |
| 89 | 89 |
| 90 #include "wtf/CurrentTime.h" | 90 #include "wtf/CurrentTime.h" |
| 91 #include "wtf/DateMath.h" | 91 #include "wtf/DateMath.h" |
| 92 #include "wtf/HashMap.h" | 92 #include "wtf/HashMap.h" |
| 93 #include "wtf/MainThread.h" | |
| 94 #include "wtf/MathExtras.h" | 93 #include "wtf/MathExtras.h" |
| 95 #include "wtf/OwnPtr.h" | 94 #include "wtf/OwnPtr.h" |
| 96 #include "wtf/PassOwnPtr.h" | 95 #include "wtf/PassOwnPtr.h" |
| 97 #include "wtf/ThreadSpecific.h" | 96 #include "wtf/ThreadSpecific.h" |
| 98 #include "wtf/ThreadingPrimitives.h" | 97 #include "wtf/ThreadingPrimitives.h" |
| 99 #include "wtf/WTFThreadData.h" | 98 #include "wtf/WTFThreadData.h" |
| 100 #include "wtf/dtoa.h" | 99 #include "wtf/dtoa.h" |
| 101 #include "wtf/dtoa/cached-powers.h" | 100 #include "wtf/dtoa/cached-powers.h" |
| 102 #include <errno.h> | 101 #include <errno.h> |
| 103 #include <process.h> | 102 #include <process.h> |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 | 402 |
| 404 void willCreateThread() | 403 void willCreateThread() |
| 405 { | 404 { |
| 406 s_threadCreated = true; | 405 s_threadCreated = true; |
| 407 } | 406 } |
| 408 #endif | 407 #endif |
| 409 | 408 |
| 410 } // namespace WTF | 409 } // namespace WTF |
| 411 | 410 |
| 412 #endif // OS(WIN) | 411 #endif // OS(WIN) |
| OLD | NEW |