fossil: required p9p changes

R=rsc
https://codereview.appspot.com/13352057
This commit is contained in:
David du Colombier 2013-09-26 20:12:45 +02:00
parent 4b57665805
commit b32de4ae73
15 changed files with 156 additions and 67 deletions

View file

@ -28,26 +28,33 @@ flprint(char *fmt, ...)
}
static void
flclre(Fsck*, Block *b, int o)
flclre(Fsck *chk, Block *b, int o)
{
USED(chk);
Bprint(&bout, "# clre 0x%ux %d\n", b->addr, o);
}
static void
flclrp(Fsck*, Block *b, int o)
flclrp(Fsck *chk, Block *b, int o)
{
USED(chk);
Bprint(&bout, "# clrp 0x%ux %d\n", b->addr, o);
}
static void
flclri(Fsck*, char *name, MetaBlock*, int, Block*)
flclri(Fsck *chk, char *name, MetaBlock *mb, int i, Block *b)
{
USED(chk);
USED(mb);
USED(i);
USED(b);
Bprint(&bout, "# clri %s\n", name);
}
static void
flclose(Fsck*, Block *b, u32int epoch)
flclose(Fsck *chk, Block *b, u32int epoch)
{
USED(chk);
Bprint(&bout, "# bclose 0x%ux %ud\n", b->addr, epoch);
}