From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3456 invoked by alias); 6 Jul 2011 03:45:05 -0000 Received: (qmail 3423 invoked by uid 22791); 6 Jul 2011 03:45:04 -0000 X-SWARE-Spam-Status: No, hits=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO sourceware.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 06 Jul 2011 03:44:45 +0000 From: "wuchengping at h3c dot com" To: gdb-prs@sourceware.org Subject: [Bug breakpoints/12958] How to set a breakpoint at the exit of a function? X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: breakpoints X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: wuchengping at h3c dot com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Date: Wed, 06 Jul 2011 03:45:00 -0000 Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-prs-owner@sourceware.org X-SW-Source: 2011-q3/txt/msg00030.txt.bz2 http://sourceware.org/bugzilla/show_bug.cgi?id=3D12958 --- Comment #3 from =E4=BC=8D=E6=88=90=E5=B9=B3 2011-07-06 03:44:40 UTC --- (In reply to comment #1) > (In reply to comment #0) > > I know how to set a breakpoint at the begin of a function.it is "break > > function_name",but how to set a breakpoint at the exit/end of a functio= n? > you can dissembly the function in gdb, and get the address of exit/end of= a > function, then you can set breakpoint on that address, for example, "b > *0x123456". yes,I can set a breakpoint at the exit of a function in this way,but it can only be used once, because when I modified my code,the exit address of the function will also change,so I must modify "the gdb command file" synchronously.I use the gdb command in this way "gdb -p $(pidof vmserver) -x cmd.txt",and the gdb command lies in the file(cmd.txt).the file content is: b CDeviceMgr::queryPhyDevsInDomain command silent p pcUserCode c end c In this way,I can watch the input parameters of the function,but how to wat= ch the output parameters? I hope that I can set the exit breakpoint as simple as the entrance breakpoint.The most important thing is that I hope,when I modified my code,= the gdb command file will be no need to modify synchronously. --=20 Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=3Demail ------- You are receiving this mail because: ------- You are on the CC list for the bug.