projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
sys_change_vcore() (XCC)
[akaros.git]
/
tests
/
breakpoint.c
1
// program to cause a breakpoint trap
2
3
#include <arch/arch.h>
4
5
int main(int argc, char** argv)
6
{
7
breakpoint();
8
return 0;
9
}
10