From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3351 invoked by alias); 10 Jun 2002 21:50:12 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 3175 invoked from network); 10 Jun 2002 21:50:10 -0000 Received: from unknown (HELO cygnus.com) (205.180.83.203) by sources.redhat.com with SMTP; 10 Jun 2002 21:50:10 -0000 Received: from romulus.sfbay.redhat.com (romulus.sfbay.redhat.com [172.16.27.251]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id OAA00527; Mon, 10 Jun 2002 14:50:08 -0700 (PDT) Received: (from kev@localhost) by romulus.sfbay.redhat.com (8.11.6/8.11.6) id g5ALo3200708; Mon, 10 Jun 2002 14:50:03 -0700 Date: Mon, 10 Jun 2002 14:50:00 -0000 From: Kevin Buettner Message-Id: <1020610215002.ZM707@localhost.localdomain> In-Reply-To: "Lawrence Lee (Shanghai)" "The question about the relation between gdb and the programme deb ugged" (Jun 10, 10:11am) References: To: "Lawrence Lee (Shanghai)" , "'gdb@sources.redhat.com'" Subject: Re: The question about the relation between gdb and the programme deb ugged MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-06/txt/msg00086.txt.bz2 On Jun 10, 10:11am, Lawrence Lee (Shanghai) wrote: > I want to know the relation between the gdb and the object programme being > debugged. Does the gdb load the object programme into gdb's memory spaces > so that gdb can access the varible of the programme? Or the gdb and the > object programme are different processes which have different memory > spaces? The latter; gdb and the program being debugged are separate processes. Kevin