From owner-freebsd-hackers@FreeBSD.ORG Tue Aug 12 09:44:54 2003 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32FFC37B401 for ; Tue, 12 Aug 2003 09:44:54 -0700 (PDT) Received: from smtp-relay2.barrysworld.com (smtp-relay2.barrysworld.com [213.221.172.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C7FE43FA3 for ; Tue, 12 Aug 2003 09:44:53 -0700 (PDT) (envelope-from killing@barrysworld.com) Received: from [213.221.181.50] (helo=barrysworld.com) by smtp-relay2.barrysworld.com with esmtp (Exim 4.20) id 19mcF3-00074o-SI for freebsd-hackers@freebsd.org; Tue, 12 Aug 2003 17:43:26 +0100 Received: from vader [212.135.219.179] by barrysworld.com with ESMTP (SMTPD32-7.15) id A9F6A4C00AE; Tue, 12 Aug 2003 17:46:46 +0100 Message-ID: <021301c360f0$c571e860$b3db87d4@vader> From: "Steven Hartland" To: References: <001d01c360ec$5c58aed0$0300a8c0@Xoanon> Date: Tue, 12 Aug 2003 17:42:51 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: Missing system call in linux emulation X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Steven Hartland List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 16:44:54 -0000 When running the BattleField 1942 server under FreeBSD 5.0-RELEASE / 5.1-RELEASE I get the following when the server terminates or changes map ( which I understand forks exec's then parent quits ) Core was generated by `bf1942_lnxded.stati'. Program terminated with signal 12, Bad system call. #0 0x086cc7cf in _exit () (gdb) bt #0 0x086cc7cf in _exit () #1 0x08695a2f in __pthread_manager () Running under truss I get: write(56,0xbfbff8e0,148) = 148 (0x94) linux_rt_sigprocmask(0x2,0x0,0xbfbff840,0x8) = 0 (0x0) SIGNAL 32 linux_rt_sigsuspend(0xbfbff840,0x8) ERR#4 'Interrupted system call' SIGNAL 32 SIGNAL 32 linux_sigreturn(0xbfbff54c) ERR#4 'Interrupted system call' SIGNAL 20 linux_wait4(0x12421,0x0,0x80000000,0x0) = 74785 (0x12421) -- UNKNOWN SYSCALL 252 -- (null)() ERR#78 'Function not implemented' SIGNAL 12 SIGNAL 12 Process stopped because of: 16 process exit, rval = 140 Any one know how I can track down what function is missing and hence look at fixing it? Steve