aboutsummaryrefslogtreecommitdiff
path: root/sim/common/sim-syscall.h
AgeCommit message (Collapse)AuthorFilesLines
2016-01-01GDB copyright headers update after running GDB's copyright.py script.Joel Brobecker1-1/+1
gdb/ChangeLog: Update year range in copyright notice of all files.
2015-06-17sim: syscall: add common sim_syscall helpersMike Frysinger1-0/+15
Many ports have the same sim syscall logic, so add some helpers to handle all the common details. The arches still have to deal with the unpacking and packing of the syscall arguments, but the rest of the sim<->callback glue is now shared.
2015-06-17sim: syscall: unify memory helpersMike Frysinger1-0/+30
Almost every port implements these two callbacks in the same way, so unify them in the common layer.