From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 Date: Fri, 28 May 2010 04:10:23 +0000 Message-ID: From: ron minnich To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: text/plain; charset=ISO-8859-1 Subject: [9fans] crashing 9vx Topicbox-Message-UUID: 2bd58a54-ead6-11e9-9d60-3106f5b1d025 I'm trying to create a reproducer. This little gem does crash it frequently. Note that tar and mk install are doing lots of creates too -- you're welcome to try this. term% cat lotsafiles.c #include #include void main(int, char**) { int i = 0; while (1) { int fd; char *name = smprint("/tmp/%d", i); fd = create(name, OWRITE, 0666); if (fd < 0) exits(nil); close(fd); i++; } }