blob: 589b4da05a8bdb8e32f9d02df2d68085b33d016f [file] [log] [blame]
herbe4c17352015-09-29 14:38:01 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkThreadID.h"
9
10#ifdef SK_BUILD_FOR_WIN
11 #include <windows.h>
12 SkThreadID SkGetThreadID() { return GetCurrentThreadId(); }
13#else
14 #include <pthread.h>
15 SkThreadID SkGetThreadID() { return (int64_t)pthread_self(); }
16#endif