1*63ad0876SKostya Kortchinsky //===-- common_fuchsia.cpp --------------------------------------*- C++ -*-===// 2*63ad0876SKostya Kortchinsky // 3*63ad0876SKostya Kortchinsky // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*63ad0876SKostya Kortchinsky // See https://llvm.org/LICENSE.txt for license information. 5*63ad0876SKostya Kortchinsky // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*63ad0876SKostya Kortchinsky // 7*63ad0876SKostya Kortchinsky //===----------------------------------------------------------------------===// 8*63ad0876SKostya Kortchinsky 9*63ad0876SKostya Kortchinsky #include "gwp_asan/common.h" 10*63ad0876SKostya Kortchinsky 11*63ad0876SKostya Kortchinsky namespace gwp_asan { 12*63ad0876SKostya Kortchinsky // This is only used for AllocationTrace.ThreadID and allocation traces are not 13*63ad0876SKostya Kortchinsky // yet supported on Fuchsia. getThreadID()14*63ad0876SKostya Kortchinskyuint64_t getThreadID() { return kInvalidThreadID; } 15*63ad0876SKostya Kortchinsky } // namespace gwp_asan 16