1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 "SkLeanWindows.h"
| #include "SkThreadID.h"
|
| #ifdef SK_BUILD_FOR_WIN
| SkThreadID SkGetThreadID() { return GetCurrentThreadId(); }
| #else
| #include <pthread.h>
| SkThreadID SkGetThreadID() { return (int64_t)pthread_self(); }
| #endif
|
|