blob: e627283f36f5c78460697cb77915ac18244c1fac [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#include "stack.h"
BootStack boot_stack;
#if __has_feature(safe_stack)
BootStack boot_unsafe_stack;
#endif // __has_feature(safe_stack)
#if __has_feature(shadow_call_stack)
uintptr_t boot_shadow_call_stack[BOOT_SHADOW_CALL_STACK_SIZE / sizeof(uintptr_t)];
#endif // __has_feature(shadow_call_stack)