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/teg2 | |
parent | 1cfa405d0a272cbd7df22d4b9767eb57e21cc21f (diff) |
kernel: add support for hardware watchpoints
Diffstat (limited to 'sys/src/9/teg2')
-rw-r--r-- | sys/src/9/teg2/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/src/9/teg2/main.c b/sys/src/9/teg2/main.c index e26d8bd87..30c46647d 100644 --- a/sys/src/9/teg2/main.c +++ b/sys/src/9/teg2/main.c @@ -907,3 +907,10 @@ wakewfi(void) intrcpu(cpu); #endif } + +void +setupwatchpts(Proc *, Watchpt *, int n) +{ + if(n > 0) + error("no watchpoints"); +} |