mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
17 lines
244 B
C++
17 lines
244 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/abort.h"
|
|
|
|
#include <exception>
|
|
|
|
namespace NEO {
|
|
void abortExecution() {
|
|
throw std::exception();
|
|
}
|
|
} // namespace NEO
|