Annotation of researchv9/cmd/adb/comm/bkpt.h, revision 1.1.1.1

1.1       root        1: /*
                      2:  * breakpoints
                      3:  */
                      4: 
                      5: #define        BKPTCLR 0       /* not a real breakpoint */
                      6: #define BKPTSET        1       /* real, ready to trap */
                      7: #define BKPTSKIP 2     /* real, skip over it next time */
                      8: #define        BKPTTMP 3       /* temporary; clear when it happens */
                      9: 
                     10: struct bkpt {
                     11:        ADDR    loc;
                     12:        WORD    ins;
                     13:        int     count;
                     14:        int     initcnt;
                     15:        int     flag;
                     16:        char    comm[MAXCOM];
                     17:        struct bkpt *nxtbkpt;
                     18: };
                     19: typedef struct bkpt    BKPT;
                     20: 
                     21: BKPT   *scanbkpt();
                     22: extern BKPT *bkpthead;

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.