File: mrdbconf.h

package info (click to toggle)
mruby 3.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,584 kB
  • sloc: ansic: 51,933; ruby: 29,510; yacc: 7,077; cpp: 517; makefile: 51; sh: 42
file content (24 lines) | stat: -rw-r--r-- 493 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
** mrdbconf.h - mruby debugger configuration
**
*/

#ifndef MRDBCONF_H
#define MRDBCONF_H

#ifndef MRB_USE_DEBUG_HOOK
# error mruby-bin-debugger need 'MRB_USE_DEBUG_HOOK' in your build configuration
#endif

#ifdef MRB_NO_STDIO
# error mruby-bin-debugger conflicts 'MRB_NO_STDIO' in your build configuration
#endif

/* configuration options: */
/* maximum size for command buffer */
#define MAX_COMMAND_LINE 1024

/* maximum number of settable breakpoint */
#define MAX_BREAKPOINT 5

#endif