process.cc (6701:4842482e1bd1) process.cc (7096:e81026b9dfe0)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 421 unchanged lines hidden (view full) ---

430 /* 1 */ SyscallDesc("breakpoint", unimplementedFunc),
431 /* 2 */ SyscallDesc("cacheflush", unimplementedFunc),
432 /* 3 */ SyscallDesc("usr26", unimplementedFunc),
433 /* 4 */ SyscallDesc("usr32", unimplementedFunc),
434 /* 5 */ SyscallDesc("set_tls", setTLSFunc)
435};
436
437ArmLinuxProcess::ArmLinuxProcess(LiveProcessParams * params,
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 421 unchanged lines hidden (view full) ---

430 /* 1 */ SyscallDesc("breakpoint", unimplementedFunc),
431 /* 2 */ SyscallDesc("cacheflush", unimplementedFunc),
432 /* 3 */ SyscallDesc("usr26", unimplementedFunc),
433 /* 4 */ SyscallDesc("usr32", unimplementedFunc),
434 /* 5 */ SyscallDesc("set_tls", setTLSFunc)
435};
436
437ArmLinuxProcess::ArmLinuxProcess(LiveProcessParams * params,
438 ObjectFile *objFile)
439 : ArmLiveProcess(params, objFile),
438 ObjectFile *objFile, ObjectFile::Arch _arch)
439 : ArmLiveProcess(params, objFile, _arch),
440 Num_Syscall_Descs(sizeof(syscallDescs) / sizeof(SyscallDesc)),
441 Num_Priv_Syscall_Descs(sizeof(privSyscallDescs) / sizeof(SyscallDesc))
442{ }
443
444const Addr ArmLinuxProcess::commPage = 0xffff0000;
445
446SyscallDesc*
447ArmLinuxProcess::getDesc(int callnum)

--- 84 unchanged lines hidden ---
440 Num_Syscall_Descs(sizeof(syscallDescs) / sizeof(SyscallDesc)),
441 Num_Priv_Syscall_Descs(sizeof(privSyscallDescs) / sizeof(SyscallDesc))
442{ }
443
444const Addr ArmLinuxProcess::commPage = 0xffff0000;
445
446SyscallDesc*
447ArmLinuxProcess::getDesc(int callnum)

--- 84 unchanged lines hidden ---