Oh sure thing, sorry I prolly should have thought of it. This first part is from my main,
TIME_STRUCT mqx_time;
mqx_time.SECONDS = 1356048000;
_time_set(&mqx_time);
_time_get(&mqx_time);
printf("seconds = %i",mqx_time.SECONDS);
This always prints 0 for seconds. when it should be printing what I set it to right above, 1356048000. I traced it as far into the PSP as I can understand, and I see some values change in the kernel, but I don't necessarily know how to tell if its doing that correctly.