repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* same with xv6
[mascara-docs.git]
/
i386
/
standford
/
2004
/
src
/
lab4
/
user
/
faultwrite.c
blob
975f631cbf04910b9823df76e44b8ca662486177
1
// buggy program - faults with a write to location zero
2
3
#include <inc/lib.h>
4
5
void
6
umain
(
void
)
7
{
8
*(
u_int
*)
0
=
0
;
9
}
10