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