| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/MathExtras.h" | 93 #include "wtf/MathExtras.h" |
| 94 #include "wtf/OwnPtr.h" |
| 95 #include "wtf/PassOwnPtr.h" |
| 94 #include "wtf/ThreadSpecific.h" | 96 #include "wtf/ThreadSpecific.h" |
| 95 #include "wtf/ThreadingPrimitives.h" | 97 #include "wtf/ThreadingPrimitives.h" |
| 96 #include "wtf/WTFThreadData.h" | 98 #include "wtf/WTFThreadData.h" |
| 97 #include "wtf/dtoa/double-conversion.h" | 99 #include "wtf/dtoa/double-conversion.h" |
| 98 #include <errno.h> | 100 #include <errno.h> |
| 99 #include <process.h> | 101 #include <process.h> |
| 100 #include <windows.h> | 102 #include <windows.h> |
| 101 | 103 |
| 102 namespace WTF { | 104 namespace WTF { |
| 103 | 105 |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 | 407 |
| 406 void willCreateThread() | 408 void willCreateThread() |
| 407 { | 409 { |
| 408 s_threadCreated = true; | 410 s_threadCreated = true; |
| 409 } | 411 } |
| 410 #endif | 412 #endif |
| 411 | 413 |
| 412 } // namespace WTF | 414 } // namespace WTF |
| 413 | 415 |
| 414 #endif // OS(WIN) | 416 #endif // OS(WIN) |
| OLD | NEW |