2 * Window Maker miscelaneous function library
4 * Copyright (c) 1997 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "../src/config.h"
27 #include <sys/types.h>
47 defaultHandler(int bla
)
50 kill(getpid(), SIGABRT
);
56 static waborthandler
*aborthandler
= (waborthandler
*)defaultHandler
;
58 #define wAbort(a) (*aborthandler)(a)
62 wsetabort(waborthandler
*handler
)
64 waborthandler
*old
= aborthandler
;
66 aborthandler
= handler
;
73 static int Aborting
=0; /* if we're in the middle of an emergency exit */
76 static WMHashTable
*table
= NULL
;
87 tmp
= GC_malloc(size
);
92 wwarning("malloc() failed. Retrying after 2s.");
95 tmp
= GC_malloc(size
);
101 fputs("Really Bad Error: recursive malloc() failure.", stderr
);
104 wfatal("virtual memory exhausted");
115 wrealloc(void *ptr
, size_t newsize
)
120 nptr
= wmalloc(newsize
);
121 } else if (newsize
==0) {
126 nptr
= GC_realloc(ptr
, newsize
);
128 nptr
= realloc(ptr
, newsize
);
131 wwarning("realloc() failed. Retrying after 2s.");
134 nptr
= GC_realloc(ptr
, newsize
);
136 nptr
= realloc(ptr
, newsize
);
140 fputs("Really Bad Error: recursive realloc() failure.",
144 wfatal("virtual memory exhausted");
161 table
= WMCreateHashTable(WMIntHashCallbacks
);
164 refcount
= WMHashGet(table
, ptr
);
166 refcount
= wmalloc(sizeof(int));
168 WMHashInsert(table
, ptr
, refcount
);
170 printf("== %i (%p)\n", *refcount
, ptr
);
175 printf("+ %i (%p)\n", *refcount
, ptr
);
201 refcount
= WMHashGet(table
, ptr
);
203 wwarning("trying to release unexisting data %p", ptr
);
208 printf("RELEASING %p\n", ptr
);
210 WMHashRemove(table
, ptr
);
216 printf("- %i (%p)\n", *refcount
, ptr
);
228 return strcpy(wmalloc(strlen(str
)+1), str
);
233 wstrconcat(char *str1
, char *str2
)
238 return wstrdup(str2
);
240 return wstrdup(str1
);
242 str
= wmalloc(strlen(str1
)+strlen(str2
)+1);
251 wstrappend(char *dst
, char *src
)
255 else if (!src
|| *src
==0)
258 dst
= wrealloc(dst
, strlen(dst
)+strlen(src
)+1);