2021-05-20 12:49:33 +02:00
|
|
|
// Copyright 2009-2021 Intel Corporation
|
2020-12-19 14:50:20 +01:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#if defined(TASKING_INTERNAL)
|
|
|
|
# include "taskschedulerinternal.h"
|
|
|
|
#elif defined(TASKING_TBB)
|
|
|
|
# include "taskschedulertbb.h"
|
|
|
|
#elif defined(TASKING_PPL)
|
|
|
|
# include "taskschedulerppl.h"
|
|
|
|
#else
|
|
|
|
# error "no tasking system enabled"
|
|
|
|
#endif
|
|
|
|
|