From owner-freebsd-emulation@FreeBSD.ORG Thu Nov 5 00:54:22 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E71EA10656A4 for ; Thu, 5 Nov 2009 00:54:22 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) Received: from zivm-exrelay3.uni-muenster.de (ZIVM-EXRELAY3.UNI-MUENSTER.DE [128.176.192.20]) by mx1.freebsd.org (Postfix) with ESMTP id 7B1268FC0C for ; Thu, 5 Nov 2009 00:54:22 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.44,683,1249250400"; d="scan'208";a="17639280" Received: from zivmaildisp1.uni-muenster.de (HELO ZIVMAILUSER01.UNI-MUENSTER.DE) ([128.176.188.85]) by zivm-relay3.uni-muenster.de with ESMTP; 05 Nov 2009 01:54:21 +0100 Received: by ZIVMAILUSER01.UNI-MUENSTER.DE (Postfix, from userid 149459) id 429741B0766; Thu, 5 Nov 2009 01:54:21 +0100 (CET) Date: Thu, 05 Nov 2009 01:54:20 +0100 (CET) From: Alexander Best Sender: Organization: Westfaelische Wilhelms-Universitaet Muenster To: Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Subject: Bug locating path for linux_mkdir X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Nov 2009 00:54:23 -0000 i'm not able to reproduce this problem anymore under 9-CURRENT. i'm using the following test code running emulators/linux_dist-gentoo-stage3 (for chroot and for compilation with cc) and linux_base-f10: #include #include #include main() { mkdir("/tmp/.test", 511 ); printf("first errno: %d\n", errno); mkdir("/tmp/.test/test2/", 511 ); printf("second errno: %d\n", errno); } the result is: first errno: 0 second errno: 0 was a problem report submitted back then? alex