ao_break.h
Breakpoints

Notes

This module contains a single function that executes a breakpoint, if the application is running in debug mode.

Include

ao_debug.h

Functions

ao_break

#if     AO_DEBUG

#ifndef ao_break

#define ao_break() __builtin_software_breakpoint()

#endif

#else

#ifndef ao_break

#define ao_break()

#endif

#endif

Executes a breakpoint.