/* * omp-state.cpp -- OMPD states */ //===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// #include "omp-debug.h" #include "ompd-private.h" #include <cstring> void __ompd_init_states(const ompd_callbacks_t *table) { … } static const char *get_ompd_state_name(ompd_word_t state) { … } ompd_rc_t ompd_enumerate_states(ompd_address_space_handle_t *address_space_handle, ompd_word_t current_state, ompd_word_t *next_state, const char **next_state_name, ompd_word_t *more_enums) { … }