DuinOS: small and simple rtos

Does this new version support the "Wire" library? Whenever I have the duinOS enabled(on the boards section) the only value I get from my external device is the max value.

Like...Even if the program isnt using any duinOS features... but is set to compile for the duemilanove w/ an atmega328 +duinOS, it simply fails, but works perfectly without the "+duinOS".

Also, it seems to crash and burn if I put the code below in a critical section:
Wire.beginTransmission(0x52);// transmit to device 0x52
Wire.send(0x00);// sends one byte
Wire.endTransmission();// stop transmitting

I wish I realized it was duinOS's fault and not my code 6 hours ago...