From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28423 invoked by alias); 26 Apr 2013 19:02:58 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 28410 invoked by uid 89); 26 Apr 2013 19:02:58 -0000 X-Spam-SWARE-Status: No, score=1.5 required=5.0 tests=BAYES_40,FREEMAIL_FROM,FROM_LOCAL_NOVOWEL,HK_RANDOM_FROM,RCVD_IN_DNSWL_NONE autolearn=no version=3.3.1 Received: from helsinki.magic.fr (HELO helsinki.magic.fr) (188.130.33.134) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 26 Apr 2013 19:02:57 +0000 Received: (qmail 30108 invoked from network); 26 Apr 2013 21:02:52 +0200 Received: from gut75-4-82-235-162-250.fbx.proxad.net (HELO Mail) (82.235.162.250) by daelgrau.fr with SMTP; 26 Apr 2013 21:02:52 +0200 Received: from localhost ([10.100.103.24]) by Mail ; Fri, 26 Apr 2013 21:01:09 +0200 From: Maxime Coste To: gdb-patches@sourceware.org Subject: Add a python event registry for selected frame changes Date: Fri, 26 Apr 2013 21:07:00 -0000 Message-Id: <1367002961-12311-1-git-send-email-frrrwww@gmail.com> X-SW-Source: 2013-04/txt/msg00824.txt.bz2 Hello, Here is a patch serie which permits python scripts to watch for selected frame changes, ignoring changes which are triggered by implementation detail (like executing a call command). I know the real solution to select_frame would be for most function to take a frame rather than relying on the current selected frame, however I am not familiar enough with gdb internals to fix that. Regards, Maxime Coste.