You can't do this portably. time_t isn't even necessarily an integral type. It could be a struct or anything really.
Since it looks like you're setting the tv_sec member of a struct timeval, why don't you just use the right type there? That's defined as a long int, so you should do:
tv.tv_sec = std::numeric_limits<long int>::max();
Although, I notice now that POSIX says tv_sec is a time_t even though MSDN and the GNU libc use long int. These old time APIs that can't even distinguish between durations and time points are definitely due for replacement. If you can use C++11 check out std::chrono.
Anyway, std::numeric_limits<std::time_t>::max() actually does give the max time_t value, even on Windows. The problem is just that Window's definition for timeval::tv_sec isn't time_t as POSIX mandates, and so the cast to long int gets you the negative number.
However this can be fixed on Windows by defining _USE_32BIT_TIME_T. This will cause the definition for time_t to match the type used in timeval for tv_sec, and then your std::numeric_limits<time_t>::max() will work.
tv.tv_sec? Either it's nottime_t, or your C++ standard library isn't compiling correctly for some reason. – Mooing Duck Nov 16 '11 at 18:56