* Make-common.in (TAGS): Make smarter.
* Makefile.in (TAGS): Ditto.
- * sim-core.c (sim_core_attach): Use xmalloc instead of zalloc.
- Use 0xa5 as initial value.
- (sim_core_map_detach): Use free instead of zfree.
-
Fri Feb 27 19:09:57 1998 Doug Evans <devans@canuck.cygnus.com>
* sim-module.c (*): Fix typos in assertion tests.
#ifndef _SIM_CORE_C_
#define _SIM_CORE_C_
-#include "libiberty.h"
#include "sim-main.h"
#include "sim-assert.h"
if (optional_buffer == NULL)
{
int padding = (addr % sizeof (unsigned64));
- unsigned int bytes = (modulo == 0 ? nr_bytes : modulo) + padding;
- free_buffer = xmalloc (bytes);
- /* #if WITH_DETERMINISTIC_SIMULATION? */
- memset (free_buffer, 0xa5, bytes);
+ unsigned long bytes = (modulo == 0 ? nr_bytes : modulo) + padding;
+ free_buffer = zalloc (bytes);
buffer = (char*) free_buffer + padding;
}
else
sim_core_mapping *dead = (*entry);
(*entry) = dead->next;
if (dead->free_buffer != NULL)
- free (dead->free_buffer);
+ zfree (dead->free_buffer);
zfree (dead);
return;
}