//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// /// \file /// Functions to emit LC_THREAD bytes to the corefile's Mach-O load commands, /// specifying the threads, the register sets ("flavors") within those threads, /// and all of the registers within those register sets. //===----------------------------------------------------------------------===// #ifndef YAML2MACHOCOREFILE_THREADWRITER_H #define YAML2MACHOCOREFILE_THREADWRITER_H #include "CoreSpec.h" #include void add_lc_threads(CoreSpec &spec, std::vector> &load_commands); #endif