The best solution would be to abstract things out as much as
possible. An abstract data type that contains whatever information
we need and we pull out whatever info we want by macros or
function calls...

        apr_time_t marker;
        long seconds;
        long micro_seconds
        marker = apr_get_time(NULL);
        seconds = apr_conv_time(marker, SECONDS);
        micro_seconds = apr_conv_time(marker, MICROSECS);

as a general idea.
-- 
===========================================================================
   Jim Jagielski   [|]   [EMAIL PROTECTED]   [|]   http://www.jaguNET.com/
          "Casanova will have many weapons; To beat him you will
              have to have more than forks and flatulence."

Reply via email to