This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "types.h" | |
#include "user.h" | |
#define PGSIZE 4096 | |
#define ASSERT(cond, ...) \ | |
if(!cond){ \ | |
printf(2, "FAIL at %s:%d - ", __FUNCTION__, __LINE__); \ | |
printf(2, "\n"); \ | |
exit(); \ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote add bgu http://www.cs.bgu.ac.il/~os152/xv6.git | |
git fetch bgu | |
git diff master bgu/master > ID1_ID2.patch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote add bgu http://www.cs.bgu.ac.il/~os152/xv6.git | |
git fetch bgu | |
git diff master bgu/master > ID1_ID2.patch |