mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
use sysfatal
This commit is contained in:
parent
641405320f
commit
b1cd1d55e1
1 changed files with 6 additions and 12 deletions
|
@ -10,10 +10,8 @@ emalloc9p(ulong sz)
|
||||||
{
|
{
|
||||||
void *v;
|
void *v;
|
||||||
|
|
||||||
if((v = malloc(sz)) == nil) {
|
if((v = malloc(sz)) == nil)
|
||||||
fprint(2, "out of memory allocating %lud\n", sz);
|
sysfatal("out of memory allocating %lud", sz);
|
||||||
exits("mem");
|
|
||||||
}
|
|
||||||
memset(v, 0, sz);
|
memset(v, 0, sz);
|
||||||
setmalloctag(v, getcallerpc(&sz));
|
setmalloctag(v, getcallerpc(&sz));
|
||||||
return v;
|
return v;
|
||||||
|
@ -24,10 +22,8 @@ erealloc9p(void *v, ulong sz)
|
||||||
{
|
{
|
||||||
void *nv;
|
void *nv;
|
||||||
|
|
||||||
if((nv = realloc(v, sz)) == nil) {
|
if((nv = realloc(v, sz)) == nil)
|
||||||
fprint(2, "out of memory allocating %lud\n", sz);
|
sysfatal("out of memory reallocating %lud", sz);
|
||||||
exits("mem");
|
|
||||||
}
|
|
||||||
if(v == nil)
|
if(v == nil)
|
||||||
setmalloctag(nv, getcallerpc(&v));
|
setmalloctag(nv, getcallerpc(&v));
|
||||||
setrealloctag(nv, getcallerpc(&v));
|
setrealloctag(nv, getcallerpc(&v));
|
||||||
|
@ -39,10 +35,8 @@ estrdup9p(char *s)
|
||||||
{
|
{
|
||||||
char *t;
|
char *t;
|
||||||
|
|
||||||
if((t = strdup(s)) == nil) {
|
if((t = strdup(s)) == nil)
|
||||||
fprint(2, "out of memory in strdup(%.10s)\n", s);
|
sysfatal("out of memory in strdup(%.20s)", s);
|
||||||
exits("mem");
|
|
||||||
}
|
|
||||||
setmalloctag(t, getcallerpc(&s));
|
setmalloctag(t, getcallerpc(&s));
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue