Bug locating path for linux_mkdir
Alexander Best
alexbestms at math.uni-muenster.de
Thu Nov 5 00:54:23 UTC 2009
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 <sys/stat.h>
#include <errno.h>
#include <stdio.h>
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
More information about the freebsd-emulation
mailing list