K 10 svn:author V 2 ed K 8 svn:date V 27 2016-08-21T07:41:11.006853Z K 7 svn:log V 339 Use memcpy() to copy 64-bit timestamps into the syscall return values. On 32-bit platforms, our 64-bit timestamps need to be split up across two registers. A simple assignment to td_retval[0] will cause the top 32 bits to get lost. By using memcpy(), we will automatically either use 1 or 2 registers depending on the size of register_t. END