~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/monitor/mon_breakpoint.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mto: (9.1.1 lenny) (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050201113026-6gy97mcqlg2ykg4z
Tags: upstream-1.16
ImportĀ upstreamĀ versionĀ 1.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
#include "montypes.h"
31
31
 
 
32
typedef enum mon_breakpoint_type_e {
 
33
    BP_NONE,
 
34
    BP_INACTIVE,
 
35
    BP_ACTIVE
 
36
} mon_breakpoint_type_t;
 
37
 
32
38
extern void mon_breakpoint_init(void);
33
39
 
34
40
extern void mon_breakpoint_switch_checkpoint(int op, int breakpt_num);
42
48
                                         bool is_trace, bool is_load,
43
49
                                         bool is_store, bool is_temp);
44
50
 
45
 
 
46
 
typedef enum mon_breakpoint_type_e
47
 
{
48
 
    BP_NONE,
49
 
    BP_INACTIVE,
50
 
    BP_ACTIVE
51
 
} mon_breakpoint_type_t;
52
 
 
53
 
extern mon_breakpoint_type_t mon_is_breakpoint( MON_ADDR address );
54
 
extern void mon_set_breakpoint( MON_ADDR address );
55
 
extern void mon_unset_breakpoint( MON_ADDR address );
56
 
extern void mon_enable_breakpoint( MON_ADDR address );
57
 
extern void mon_disable_breakpoint( MON_ADDR address );
 
51
extern mon_breakpoint_type_t mon_breakpoint_is(MON_ADDR address);
 
52
extern void mon_breakpoint_set(MON_ADDR address);
 
53
extern void mon_breakpoint_unset(MON_ADDR address);
 
54
extern void mon_breakpoint_enable(MON_ADDR address);
 
55
extern void mon_breakpoint_disable(MON_ADDR address);
58
56
 
59
57
#endif