eal/windows: introduce Windows support
[dpdk.git] / lib / librte_eal / windows / eal / eal_debug.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4
5 #include <rte_common.h>
6
7  /* call abort(), it will generate a coredump if enabled */
8 void
9 __rte_panic(const char *funcname __rte_unused,
10                 const char *format __rte_unused, ...)
11 {
12         /* TODO */
13         /* This is a stub, not the expected result */
14         abort();
15 }