| Index: src/core/SkThreadID.cpp
|
| diff --git a/src/core/SkThreadID.cpp b/src/core/SkThreadID.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..589b4da05a8bdb8e32f9d02df2d68085b33d016f
|
| --- /dev/null
|
| +++ b/src/core/SkThreadID.cpp
|
| @@ -0,0 +1,16 @@
|
| +/*
|
| + * Copyright 2015 Google Inc.
|
| + *
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| +#include "SkThreadID.h"
|
| +
|
| +#ifdef SK_BUILD_FOR_WIN
|
| + #include <windows.h>
|
| + SkThreadID SkGetThreadID() { return GetCurrentThreadId(); }
|
| +#else
|
| + #include <pthread.h>
|
| + SkThreadID SkGetThreadID() { return (int64_t)pthread_self(); }
|
| +#endif
|
|
|