/* src/native/jvmti/linux-i386.h - jvmti os/architecture support Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger, Institut f. Computersprachen - TU Wien This file is part of CACAO. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Contact: cacao@cacaojvm.org Author: Martin Platter Changes: $Id: dbg.h 4357 2006-01-22 23:33:38Z twisti $ */ /* at the moment linux/i386 is the only plattform available */ #if defined(__LINUX__) && defined (__I386__) #include #define TRACEME ptrace(PTRACE_TRACEME, 0, 0, 0) #define GETREGS(pid, regs) ptrace(PTRACE_GETREGS, pid, 0, ®s) #define GETMEM(pid, addr) ptrace(PTRACE_PEEKDATA, pid, (caddr_t) addr, 0) #define ENABLEBRK(pid,ins,addr) ptrace(PTRACE_POKEDATA, pid, (caddr_t) addr, (ins & ~0x000000FF) | 0xcc) #define CONT(pid) ptrace(PTRACE_CONT, pid, 0, 0) #define DISABLEBRK(pid,ins,addr) ptrace(PTRACE_POKEDATA, pid, (caddr_t) addr, ins) #define GETIP(pid,ip) ptrace(PTRACE_GETREGS, pid, 0, ®s); \ ip=regs.eip; #define SETIP(pid,ip) ip=regs.eip; \ ptrace(PTRACE_SETREGS, pid, 0, ®s); #endif