mltimeval (C Function)

mltimeval has been replaced by wstimeval.

is a MathLink type used for storing time arguments.

Details

  • The time value is measured in seconds and microseconds.
  • The seconds value can be accessed using the tv_sec specifier. The microseconds value can be accessed using the tv_usec specifier.
  • mltimeval is declared in the MathLink header file mathlink.h.

Examples

Basic Examples  (1)

Set the value of the seconds and microseconds for the time variable:

mltimeval tm;
tm.tv_sec = 10;
tm.tv_usec = 0;