mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Related-To: NEO-3677 Change-Id: I2c98595190fadfa8ffd9e378e774c0d4485cbf9e Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
17 lines
218 B
C++
17 lines
218 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/helpers/abort.h"
|
|
|
|
#include <cstdlib>
|
|
|
|
namespace NEO {
|
|
void abortExecution() {
|
|
abort();
|
|
}
|
|
} // namespace NEO
|