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