From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27373 invoked by alias); 26 Jan 2007 19:03:15 -0000 Received: (qmail 26663 invoked by uid 48); 26 Jan 2007 19:02:57 -0000 Date: Fri, 26 Jan 2007 19:03:00 -0000 From: "pmuldoon at redhat dot com" To: frysk-bugzilla@sourceware.org Message-ID: <20070126190257.3928.pmuldoon@redhat.com> Reply-To: sourceware-bugzilla@sourceware.org Subject: [Bug general/3928] New: Pty.cxx frysk::sys::Pty::setUpPtyForConsole uses system() calls to set tty properties X-Bugzilla-Reason: AssignedTo Mailing-List: contact frysk-bugzilla-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: frysk-bugzilla-owner@sourceware.org X-SW-Source: 2007-q1/txt/msg00177.txt.bz2 List-Id: This might call problems with SIGCHLD and Frysk. Code snippet below. char prefix[30] = "stty -F "; char *pts_name = ptsname(master); char cmd[60]; if (pts_name != NULL) { strcat(prefix, pts_name); strcpy(cmd, prefix); strcat(cmd, " -icanon min 1"); system(cmd); strcpy(cmd, prefix); strcat(cmd, " -echo"); system(cmd); } -- Summary: Pty.cxx frysk::sys::Pty::setUpPtyForConsole uses system() calls to set tty properties Product: frysk Version: unspecified Status: NEW Severity: normal Priority: P2 Component: general AssignedTo: frysk-bugzilla at sourceware dot org ReportedBy: pmuldoon at redhat dot com http://sourceware.org/bugzilla/show_bug.cgi?id=3928 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.