Contents

thread_call_enter1_delayed

Submit a thread call to be executed at some point in the future, with an extra parameter.

Declaration

boolean_t thread_call_enter1_delayed(thread_call_t call, thread_call_param_t param1, uint64_t deadline);

Parameters

  • call:

    The thread call to execute.

  • param1:

    Second parameter to callback.

  • deadline:

    Time, in absolute time units, at which to execute callback.

Return Value

TRUE if the call was already pending for either delayed or immediate execution, FALSE otherwise.

Discussion

This routine is identical to thread_call_enter_delayed(), except that a second parameter to the callback is specified.

See Also

Thread