Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Drew DeVault
Monado
Commits
4a7152e4
Commit
4a7152e4
authored
Apr 08, 2019
by
Ryan Pavlik
Browse files
st/oxr: Switch logger to using XRT_DEBUGBREAK
parent
655a0a9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/xrt/state_trackers/oxr/oxr_logger.cpp
View file @
4a7152e4
...
...
@@ -16,13 +16,11 @@
#include
"oxr_objects.h"
#include
"oxr_logger.h"
#ifdef _MSC_VER
// needed for __debugbreak()
#include
<intrin.h>
#endif // _MSC_VER
DEBUG_GET_ONCE_BOOL_OPTION
(
entrypoints
,
"OXR_DEBUG_ENTRYPOINTS"
,
false
)
#ifdef XRT_DEBUGBREAK
DEBUG_GET_ONCE_BOOL_OPTION
(
break_on_error
,
"OXR_BREAK_ON_ERROR"
,
false
)
#endif // XRT_DEBUGBREAK
static
const
char
*
oxr_result_to_string
(
XrResult
result
);
...
...
@@ -97,14 +95,13 @@ oxr_error(struct oxr_logger *logger, XrResult result, const char *fmt, ...)
va_end
(
args
);
fprintf
(
stderr
,
"
\n
"
);
#ifdef XRT_DEBUGBREAK
if
(
debug_get_bool_option_break_on_error
())
{
/// Trigger a debugger breakpoint.
#ifdef _MSC_VER
__debugbreak
();
#else
__builtin_trap
();
#endif
/// Trigger a debugger breakpoint.
XRT_DEBUGBREAK
();
}
#endif
return
result
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment