From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 75931 invoked by alias); 14 Jan 2016 21:07:01 -0000 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 Received: (qmail 75919 invoked by uid 89); 14 Jan 2016 21:07:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=sit, ddd, dialog, folks X-HELO: mail-vk0-f53.google.com Received: from mail-vk0-f53.google.com (HELO mail-vk0-f53.google.com) (209.85.213.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 14 Jan 2016 21:07:00 +0000 Received: by mail-vk0-f53.google.com with SMTP id k1so287876526vkb.2 for ; Thu, 14 Jan 2016 13:06:59 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type; bh=RF/eeQ/YLuRzkMyCVtm1Ehcliv8YfgkhAmWXXtfXyug=; b=hMBRRpIn3mfvM2BqhCVUKtZz5UK90Y+9W+jsGZiHrvD0o1QuKTqYereEO6TSAfhS3R 7XYyPosfNFyGfGozWpAhUr6TaQJ+Zrimxi+p4LcuBvFp3o7OAQ21P6M7+qfC9VnNgDDS Yma9k3vIYh5HjXmWFSAW6dAObzKM+vFAslKsfjcqYrZ9xElL5R4yraVct/WR3DynKOEc bOI0qcMoz+hH5hRNDAk0VvyvMUUN92FtiBCXBNH1ZYrtzmuFxF1zHD5NAz2MppdrVapX 1W2d8eovv+0UDDooSPd/NeVis+QGw3bDUhInctzUFnmb0hHvDd6cK9P46EKmBBjCtfov 7wfw== X-Gm-Message-State: ALoCoQkC6W42ySRZKZzPFlBwV+hXUG7ZLf6TqlPWXWsWlFgYJBBA6keJCBQJBCgQ4fwEi/zFgiD1pq69G/At9CiuFlWLmZky3A== X-Received: by 10.31.148.144 with SMTP id w138mr4726737vkd.44.1452805617780; Thu, 14 Jan 2016 13:06:57 -0800 (PST) MIME-Version: 1.0 Received: by 10.31.48.1 with HTTP; Thu, 14 Jan 2016 13:06:38 -0800 (PST) From: Linux Mercedes Date: Thu, 14 Jan 2016 21:07:00 -0000 Message-ID: Subject: gdb cannot find "../sysdeps/unix/syscall-template.S" To: gdb@sourceware.org Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2016-01/txt/msg00014.txt.bz2 Hi, I have an issue that appears when I'm running gdb from inside ddd. I will load and run a program and let it sit a few minutes (waiting on stdin input, if that matters). After it has sat a little bit, I will get an error dialog that says "../sysdeps/unix/syscall-template.S No such file or directory". gdb will then repeatedly output the following: file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) file: "../sysdeps/unix/syscall-template.S", line number: 1 (gdb) Continuing. Continuing. Continuing. Continuing. Continuing. Continuing. Continuing. Continuing. Continuing. Continuing. Continuing. Inspection via strace shows that it is repeatedly attempting to open() the mentioned file. I am running Ubuntu 14.04, gdb 7.7.1, ddd 3.3.12. I figured I would ask you folks rather than the ddd folks since this seems like a gdb issue. Do you have any idea why gdb expects that file to exist? Thanks!