aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/events.c
AgeCommit message (Collapse)AuthorFilesLines
2022-01-06sim: ppc: migrate to standard uintXX_t typesMike Frysinger1-11/+11
Drop the sim-specific unsignedXX types and move to the standard uintXX_t types that C11 provides.
2021-11-01sim: ppc: fix the printf fix for 32-bit systemsMike Frysinger1-1/+1
The time delta is a 64-bit value too.
2021-10-31sim: ppc: clean up printf format handlingMike Frysinger1-34/+34
Don't blindly cast every possible type to (long). Change to the right printf format specifier whether it be a 64-bit type or a pointer.
2012-12-19[sim] Update old contact info in GPL license noticesJoel Brobecker1-2/+1
sim/ChangeLog: Update old contact info in GPL license notices.
2012-12-19Update sim copyright headers from GPLv2-or-later to GPLv3-or-later.Joel Brobecker1-1/+1
gdb/sim/ChangeLog: Update the non-FSF-copyrighted files in sim to GPLv3 or later.
2011-11-032011-02-11 Ben Golding <ben_golding@yahoo.co.uk>Tom Tromey1-0/+1
* events.c: add #include <stdlib.h> for free(). Fix PR build/13372.
2011-02-14sim: punt zfree()Mike Frysinger1-4/+4
The sim keeps track of which allocations are zero-ed internally (via zalloc) and then calls a helper "zfree" function rather than "free". But this "zfree" function simply calls "free" itself. Since I can see no point in this and it is simply useless overhead, punt it. The only real change is in hw-alloc.c where we remove the zalloc_p tracking, and sim-utils.c where zfree is delete. The rest of the changes are a simple `sed` from "zfree" to "free". Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2000-04-28Fix event insertion when processing more than one event for the current time.Andrew Cagney1-3/+5
2000-04-28Cleanup tracing.Andrew Cagney1-1/+20
1999-04-16Initial creation of sourceware repositorygdb-4_18-branchpointStan Shebs1-0/+387
1999-04-16Initial creation of sourceware repositoryStan Shebs1-238/+0
1995-08-23Add PowerPC simulator from Andrew Cagney <cagney@highland.com.au>Michael Meissner1-0/+238