1 /*
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 "SkLeanWindows.h"
9 #include "SkThreadID.h"
10 
11 #ifdef SK_BUILD_FOR_WIN
SkGetThreadID()12     SkThreadID SkGetThreadID() { return GetCurrentThreadId(); }
13 #else
14     #include <pthread.h>
SkGetThreadID()15     SkThreadID SkGetThreadID() { return (int64_t)pthread_self(); }
16 #endif
17