Lines Matching defs:RTThreadCreate
111 * race inserting the thread, this is rtThreadMain() and RTThreadCreate.
122 * In Ring-0 we only try keep track of kernel threads created by RTThreadCreate
427 * This may happen if the thread finishes before the RTThreadCreate call
750 RTDECL(int) RTThreadCreate(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack,
756 LogFlow(("RTThreadCreate: pThread=%p pfnThread=%p pvUser=%p cbStack=%#x enmType=%d fFlags=%#x pszName=%p:{%s}\n",
800 Log(("RTThreadCreate: Created thread %p (%p) %s\n", pThreadInt, NativeThread, pszName));
811 LogFlow(("RTThreadCreate: Failed to create thread, rc=%Rrc\n", rc));
815 RT_EXPORT_SYMBOL(RTThreadCreate);
821 * Same as RTThreadCreate except the name is given in the RTStrPrintfV form.
824 * @param pThread See RTThreadCreate.
825 * @param pfnThread See RTThreadCreate.
826 * @param pvUser See RTThreadCreate.
827 * @param cbStack See RTThreadCreate.
828 * @param enmType See RTThreadCreate.
829 * @param fFlags See RTThreadCreate.
838 return RTThreadCreate(pThread, pfnThread, pvUser, cbStack, enmType, fFlags, szName);
846 * Same as RTThreadCreate except the name is given in the RTStrPrintf form.
849 * @param pThread See RTThreadCreate.
850 * @param pfnThread See RTThreadCreate.
851 * @param pvUser See RTThreadCreate.
852 * @param cbStack See RTThreadCreate.
853 * @param enmType See RTThreadCreate.
854 * @param fFlags See RTThreadCreate.