diff options
author | aiju <devnull@localhost> | 2017-06-12 19:03:07 +0000 |
---|---|---|
committer | aiju <devnull@localhost> | 2017-06-12 19:03:07 +0000 |
commit | 773be02aa18095e857c6659416d84951ceb60d41 (patch) | |
tree | 26daede4230e14d46d42efbcd6eab8e68adc7687 /sys/src/9/ppc | |
parent | 1cfa405d0a272cbd7df22d4b9767eb57e21cc21f (diff) |
kernel: add support for hardware watchpoints
Diffstat (limited to 'sys/src/9/ppc')
-rw-r--r-- | sys/src/9/ppc/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/src/9/ppc/main.c b/sys/src/9/ppc/main.c index 5d2a1765b..93b81fd48 100644 --- a/sys/src/9/ppc/main.c +++ b/sys/src/9/ppc/main.c @@ -497,3 +497,10 @@ cistrncmp(char *a, char *b, int n) return 0; } + +void +setupwatchpts(Proc *, Watchpt *, int n) +{ + if(n > 0) + error("no watchpoints"); +} |