HaxeFoundation / haxe

Haxe - The Cross-Platform Toolkit
https://haxe.org
6.18k stars 656 forks source link

Compilation server error using -java-lib on .class files #2916

Closed andyli closed 10 years ago

andyli commented 10 years ago

Steps to reproduce:

  1. Prepare an empty haxe Test class, and a minimal Java .class file eg. cls/net/onthewings/Test.class. (project zip)
  2. haxe -java bin -main Test -java-lib cls --wait 6000
  3. haxe -java bin -main Test -java-lib cls --connect 6000, resulting Unix.Unix_error(Unix.EMFILE, "pipe", "").
  4. Retrying the above may result in the compilation server exited with Unix.Unix_error(Unix.EMFILE, "accept", "")

Additional details:

andyli commented 10 years ago

Strangely I cannot compile the project even without using compilation server now. haxe simply exits with Unix.Unix_error(Unix.EMFILE, "pipe", "")... even after reboot. Weird.

Simn commented 10 years ago

You can compile with OCAMLRUNPARAM=b exported to get a stack trace.

andyli commented 10 years ago

Here is the output, without using compilation server:

Fatal error: exception Unix.Unix_error(15, "pipe", "")
Raised by primitive operation at file "unix.ml", line 980, characters 28-34
Called from file "main.ml", line 357, characters 24-71
Called from file "main.ml", line 381, characters 10-24
Called from file "main.ml", line 975, characters 8-25
Called from file "main.ml", line 1279, characters 1-15
Called from file "main.ml", line 597, characters 3-11
Called from file "main.ml", line 1577, characters 1-35
andyli commented 10 years ago

Argh, if I add -cp cls, I can compile the project without using compilation server. But the error with compilation server remains the same as the issue description:

1st console
$ export OCAMLRUNPARAM=b && haxe -java bin -main Test -cp cls -java-lib cls --wait 6000

2nd console
$ export OCAMLRUNPARAM=b && haxe -java bin -main Test -cp cls -java-lib cls --connect 6000
Fatal error: exception Unix.Unix_error(56, "recv", "")
Raised by primitive operation at file "unix.ml", line 547, characters 7-39
Called from file "main.ml", line 898, characters 10-38
Called from file "main.ml", line 908, characters 1-7
Called from file "main.ml", line 1577, characters 1-35

1st console's compilation server exited with:
Unix.Unix_error(Unix.EMFILE, "accept", "")
ncannasse commented 10 years ago

EMFILE is "too many open files". I guess @waneck is doing closing some files it writes?

waneck commented 10 years ago

@andyli can you check if this commit fixed it?

andyli commented 10 years ago

Sadly it is still the same as before.

waneck commented 10 years ago

That's strange... Can you try running lsof -p [haxe compilation server pid] so we can have a hint of what's going on there? I suspect it may be Unix.readdir, but I'm calling close there

waneck commented 10 years ago

Actually... Never mind, I think I may have solved it now. Can you check?

andyli commented 10 years ago

Now it is an infinity loop, both with/without using compilation server :( If I control-c the compiler, it gives me:

^CFatal error: exception Sys.Break
Raised at file "sys.ml", line 87, characters 52-57
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3044, characters 5-56
...
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3044, characters 5-56
Called from file "genjava.ml", line 3049, characters 3-41
Called from file "arg.ml", line 150, characters 12-33
Called from file "arg.ml", line 201, characters 8-27
Called from file "main.ml", line 1265, characters 3-109
Called from file "main.ml", line 1278, characters 1-21
Called from file "main.ml", line 597, characters 3-11
Called from file "main.ml", line 1577, characters 1-35
andyli commented 10 years ago

I rolled back to using f8725223cabd7a1dbbbdd73dd3c613ec57728082, and launched the compilation server:

haxe -java bin -main Test -java-lib cls --wait 6000

Run lsof:

$ lsof -p 1665
COMMAND  PID USER   FD   TYPE             DEVICE  SIZE/OFF     NODE NAME
haxe    1665 andy  cwd    DIR                1,3       204 13051901 /Users/andy/Downloads/TestHaxe
haxe    1665 andy  txt    REG                1,3  11291480 13051840 /usr/local/Cellar/haxe/HEAD/lib/haxe/haxe
haxe    1665 andy  txt    REG                1,3    207764  9562215 /usr/local/Cellar/neko/HEAD/lib/neko/libneko.dylib
haxe    1665 andy  txt    REG                1,3    106136  9562242 /usr/local/Cellar/neko/HEAD/lib/neko/std.ndll
haxe    1665 andy  txt    REG                1,3     18488  9562309 /usr/local/Cellar/neko/HEAD/lib/neko/regexp.ndll
haxe    1665 andy  txt    REG                1,3    419096 12732368 /usr/local/Cellar/pcre/8.35/lib/libpcre.1.dylib
haxe    1665 andy  txt    REG                1,3    600832  9824989 /usr/lib/dyld
haxe    1665 andy  txt    REG                1,3 343645146 12911347 /private/var/db/dyld/dyld_shared_cache_x86_64
haxe    1665 andy    0u   CHR               16,0   0t39738      649 /dev/ttys000
haxe    1665 andy    1u   CHR               16,0   0t39738      649 /dev/ttys000
haxe    1665 andy    2u   CHR               16,0   0t39738      649 /dev/ttys000
haxe    1665 andy    3r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy    4r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy    5r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy    6r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy    7r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy    8r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy    9r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   10r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   11r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   12r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   13r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   14r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   15r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   16r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   17r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   18r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   19r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   20r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   21r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   22r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   23r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   24r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   25r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   26r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   27r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   28r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   29r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   30r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   31r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   32r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   33r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   34r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   35r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   36r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   37r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   38r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   39r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   40r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   41r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   42r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   43r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   44r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   45r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   46r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   47r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   48r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   49r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   50r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   51r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   52r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   53r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   54r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   55r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   56r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   57r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   58r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   59r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   60r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   61r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   62r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   63r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   64r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   65r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   66r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   67r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   68r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   69r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   70r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   71r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   72r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   73r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   74r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   75r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   76r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   77r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   78r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   79r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   80r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   81r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   82r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   83r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   84r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   85r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   86r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   87r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   88r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   89r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   90r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   91r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   92r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   93r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   94r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   95r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   96r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   97r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   98r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy   99r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  100r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  101r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  102r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  103r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  104r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  105r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  106r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  107r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  108r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  109r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  110r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  111r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  112r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  113r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  114r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  115r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  116r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  117r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  118r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  119r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  120r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  121r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  122r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  123r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  124r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  125r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  126r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  127r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  128r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  129r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  130r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  131r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  132r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  133r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  134r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  135r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  136r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  137r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  138r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  139r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  140r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  141r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  142r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  143r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  144r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  145r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  146r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  147r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  148r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  149r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  150r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  151r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  152r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  153r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  154r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  155r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  156r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  157r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  158r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  159r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  160r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  161r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  162r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  163r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  164r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  165r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  166r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  167r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  168r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  169r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  170r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  171r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  172r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  173r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  174r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  175r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  176r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  177r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  178r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  179r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  180r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  181r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  182r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  183r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  184r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  185r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  186r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  187r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  188r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  189r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  190r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  191r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  192r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  193r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  194r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  195r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  196r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  197r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  198r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  199r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  200r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  201r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  202r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  203r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  204r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  205r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  206r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  207r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  208r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  209r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  210r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  211r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  212r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  213r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  214r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  215r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  216r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  217r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  218r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  219r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  220r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  221r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  222r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  223r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  224r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  225r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  226r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  227r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  228r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  229r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  230r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  231r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  232r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  233r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  234r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  235r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  236r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  237r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  238r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  239r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  240r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  241r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  242r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  243r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  244r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  245r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  246r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  247r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  248r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  249r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  250r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  251r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  252r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  253r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  254r   DIR                1,3       102 13051907 /Users/andy/Downloads/TestHaxe/cls
haxe    1665 andy  255u  IPv4 0xd4a05a13ff3aaacb       0t0      TCP localhost:6000 (LISTEN)
waneck commented 10 years ago

Oops. Sorry about that, Andy. I didn't notice that readdir returned also . and .. . Just fixed the infinite loop

andyli commented 10 years ago

Have just tested and it complies perfectly fine now :) Thanks!