Contents

thread_call_enter1

Submit a thread call work item for immediate execution, with an extra parameter.

Declaration

boolean_t thread_call_enter1(thread_call_t call, thread_call_param_t param1);

Parameters

  • call:

    The thread call to execute.

  • param1:

    Parameter to pass 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(), except that the second parameter to the callback is specified.

See Also

Thread