1130812Smarcel/* Definitions for running gdb on a host machine running any flavor of SVR4.
2130812Smarcel   Copyright 1991, 1992, 1993, 1998 Free Software Foundation, Inc.
3130812Smarcel   Written by Fred Fish at Cygnus Support (fnf@cygnus.com).
4130812Smarcel
5130812Smarcel   This file is part of GDB.
6130812Smarcel
7130812Smarcel   This program is free software; you can redistribute it and/or modify
8130812Smarcel   it under the terms of the GNU General Public License as published by
9130812Smarcel   the Free Software Foundation; either version 2 of the License, or
10130812Smarcel   (at your option) any later version.
11130812Smarcel
12130812Smarcel   This program is distributed in the hope that it will be useful,
13130812Smarcel   but WITHOUT ANY WARRANTY; without even the implied warranty of
14130812Smarcel   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15130812Smarcel   GNU General Public License for more details.
16130812Smarcel
17130812Smarcel   You should have received a copy of the GNU General Public License
18130812Smarcel   along with this program; if not, write to the Free Software
19130812Smarcel   Foundation, Inc., 59 Temple Place - Suite 330,
20130812Smarcel   Boston, MA 02111-1307, USA.  */
21130812Smarcel
22130812Smarcel/* Use SVR4 style shared library support */
23130812Smarcel
24130812Smarcel#define SVR4_SHARED_LIBS
25130812Smarcel#include "solib.h"
26130812Smarcel
27130812Smarcel/* SVR4 has /proc support, so use it instead of ptrace. */
28130812Smarcel
29130812Smarcel#define USE_PROC_FS
30130812Smarcel
31130812Smarcel/* SVR4 machines can easily do attach and detach via /proc (procfs.c)
32130812Smarcel   support */
33130812Smarcel
34130812Smarcel#define ATTACH_DETACH
35