Files
compute-runtime/core/helpers/debug_helpers.cpp
Mateusz Hoppe f0a6f6b057 Move DebugSettingsManager to core
- pass registry path in constructor

Change-Id: I2a121da2c9483a0df088989feea490a638c63016
Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2019-12-17 10:39:53 +01:00

27 lines
616 B
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "core/helpers/debug_helpers.h"
#include "core/debug_settings/debug_settings_manager.h"
#include <assert.h>
#include <cstdio>
namespace NEO {
void debugBreak(int line, const char *file) {
if (DebugManager.flags.EnableDebugBreak.get()) {
printf("Assert was called at %d line in file:\n%s\n", line, file);
assert(false);
}
}
void abortUnrecoverable(int line, const char *file) {
printf("Abort was called at %d line in file:\n%s\n", line, file);
abortExecution();
}
} // namespace NEO