/*
 *   call-seq:
 *      Debugger.catchpoints -> hash
 *
 *   Returns a current catchpoints, which is a hash exception names that will
 *   trigger a debugger when raised. The values are the number of times taht
 *   catchpoint was hit, initially 0.
 */
VALUE
debug_catchpoints(VALUE self)
{
    debug_check_started();

    return rdebug_catchpoints;
}