f701443c33a6a177080d33737934ca5c33191757
[dpdk.git] / lib / librte_eal / windows / eal / eal_thread.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4
5 #include <windows.h>
6
7 #include <rte_common.h>
8
9 typedef uintptr_t eal_thread_t;
10
11 /* function to create threads */
12 int
13 eal_thread_create(eal_thread_t *thread __rte_unused)
14 {
15         /* TODO */
16         /* This is a stub, not the expected result */
17         return 0;
18 }