From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1521 invoked by alias); 17 Feb 2010 02:49:18 -0000 Received: (qmail 1513 invoked by uid 22791); 17 Feb 2010 02:49:18 -0000 X-SWARE-Spam-Status: No, hits=-1.0 required=5.0 tests=AWL,BAYES_20 X-Spam-Check-By: sourceware.org Received: from ns.intrepid.com (HELO mail.intrepid.com) (74.95.8.113) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 17 Feb 2010 02:49:10 +0000 Received: from nenad-vukicevics-macbook-pro.local ([10.10.11.101]) by mail.intrepid.com (8.13.8/8.13.8) with ESMTP id o1H2n81U008964 for ; Tue, 16 Feb 2010 18:49:09 -0800 Message-ID: <4B7B5924.9010709@intrepid.com> Date: Wed, 17 Feb 2010 02:49:00 -0000 From: Nenad Vukicevic User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: gdb@sourceware.org Subject: Continue does not continue all threads in all-stop mode Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2010-02/txt/msg00112.txt.bz2 I am running a head version of GDB (couple of weeks old) and noticed that in all-stop mode with multiple inferiors continue command does not continue all threads (all threads are processes created by fork(0). Only the current thread is being run. For example here is what I have: info thread 5 UPC Thread 3 *upc_main (argc=1, argv=0x7fffffffe0a8) at src/cgB.upc:137 4 UPC Thread 2 *upc_main (argc=1, argv=0x7fffffffe0a8) at src/cgB.upc:137 3 UPC Thread 1 *upc_main (argc=1, argv=0x7fffffffe0a8) at src/cgB.upc:137 * 2 UPC Thread 0 *upc_main (argc=1, argv=0x7fffffffe0a8) at src/cgB.upc:137 (gdb) c& Continuing. (gdb) Size: 14000 Iterations: 15 info threads 5 UPC Thread 3 *upc_main (argc=1, argv=0x7fffffffe0a8) at src/cgB.upc:137 4 UPC Thread 2 *upc_main (argc=1, argv=0x7fffffffe0a8) at src/cgB.upc:137 3 UPC Thread 1 *upc_main (argc=1, argv=0x7fffffffe0a8) at src/cgB.upc:137 * 2 UPC Thread 0 (running) (gdb) Is this normal or an oversight? Nenad