blob: 11e1eedeed047d59fd393a21b627b3bd4467ee0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <u.h>
#include <libc.h>
#include <bio.h>
void
Berror(Biobufhdr *bp, char *fmt, ...)
{
va_list va;
char buf[ERRMAX];
if(bp->errorf == nil)
return;
va_start(va, fmt);
vsnprint(buf, ERRMAX, fmt, va);
va_end(va);
bp->errorf(buf);
}
static void
Bpanic(char *s)
{
sysfatal("%s", s);
}
void
Blethal(Biobufhdr *bp, void (*errorf)(char *))
{
if(errorf == nil)
errorf = Bpanic;
bp->errorf = errorf;
}
|