Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
SkThreadID.cpp
Go to the documentation of this file.
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
9
10#ifdef SK_BUILD_FOR_WIN
12 SkThreadID SkGetThreadID() { return GetCurrentThreadId(); }
13#else
14 #include <pthread.h>
15 SkThreadID SkGetThreadID() { return (int64_t)pthread_self(); }
16#endif
SkThreadID SkGetThreadID()
int64_t SkThreadID
Definition SkThreadID.h:16