Judy code has some debugging calls to check functions.
Inside DBGCODE ( … ).

Unfortunately, the code for these functions aren't in the tarball
or repository. Any available?

I have a crash on Windows probably due to an incomplete or
incorrect port of the sources to ISO C compliance much of
which revolved around replacing things like

        -1L  // all bits set .. NOT ON WINDOWS

with

        -(unitptr_t)1 // all bits set on all platforms

(actually ~(uintptr_t)0 would have been better). Since Judy does
a LOT of bit fiddling, sometimes on smaller values than a machine
word, these things are critical. The code is obscure because C
is heavily populated with implicit conversions.

—
john skaller
[email protected]
http://felix-lang.org


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Judy-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/judy-devel

Reply via email to