1*8975f5c5SAndroid Build Coastguard Worker // 2*8975f5c5SAndroid Build Coastguard Worker // Copyright 2022 The ANGLE Project Authors. All rights reserved. 3*8975f5c5SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 4*8975f5c5SAndroid Build Coastguard Worker // found in the LICENSE file. 5*8975f5c5SAndroid Build Coastguard Worker // 6*8975f5c5SAndroid Build Coastguard Worker // backtrace_utils_noop.cpp: 7*8975f5c5SAndroid Build Coastguard Worker // Implements the placeholder functions related to the backtrace info class for non-Android 8*8975f5c5SAndroid Build Coastguard Worker // platforms or when the backtrace feature is disabled. 9*8975f5c5SAndroid Build Coastguard Worker // 10*8975f5c5SAndroid Build Coastguard Worker 11*8975f5c5SAndroid Build Coastguard Worker #include "backtrace_utils.h" 12*8975f5c5SAndroid Build Coastguard Worker 13*8975f5c5SAndroid Build Coastguard Worker namespace angle 14*8975f5c5SAndroid Build Coastguard Worker { 15*8975f5c5SAndroid Build Coastguard Worker populateBacktraceInfo(void ** stackAddressBuffer,size_t stackAddressCount)16*8975f5c5SAndroid Build Coastguard Workervoid BacktraceInfo::populateBacktraceInfo(void **stackAddressBuffer, size_t stackAddressCount) {} 17*8975f5c5SAndroid Build Coastguard Worker getBacktraceInfo()18*8975f5c5SAndroid Build Coastguard WorkerBacktraceInfo getBacktraceInfo() 19*8975f5c5SAndroid Build Coastguard Worker { 20*8975f5c5SAndroid Build Coastguard Worker return {}; 21*8975f5c5SAndroid Build Coastguard Worker } 22*8975f5c5SAndroid Build Coastguard Worker 23*8975f5c5SAndroid Build Coastguard Worker // The following function has been defined in each platform separately. 24*8975f5c5SAndroid Build Coastguard Worker // - void printBacktraceInfo(BacktraceInfo backtraceInfo); 25*8975f5c5SAndroid Build Coastguard Worker 26*8975f5c5SAndroid Build Coastguard Worker } // namespace angle 27