Condividi tramite


IDebugThread2::GetThreadProperties

Ottiene le proprietà che descrivono questo thread.

Sintassi

int GetThreadProperties (
    enum_THREADPROPERTY_FIELDS dwFields,
    THREADPROPERTIES[]         ptp
);

Parametri

dwFields
[in] Combinazione di flag dell'enumerazione THREADPROPERTY_FIELDS che determina quali campi di ptp devono essere compilati.

ptp
[in, out] Struttura THREADPROPERTIES compilata con le proprietà del thread.

Valore restituito

Se ha esito positivo, restituisce S_OK; in caso contrario, restituisce un codice di errore.

Osservazioni:

Le informazioni restituite da questo metodo vengono in genere visualizzate nella finestra di debug Thread .

Esempio

Nell'esempio seguente viene illustrato come implementare questo metodo per un oggetto semplice CProgram che implementa l'interfaccia IDebugThread2 .

HRESULT CProgram::GetThreadProperties(THREADPROPERTY_FIELDS dwFields,
                                      THREADPROPERTIES *ptp)
{
    HRESULT hr = E_FAIL;

    // Check for valid argument.
    if (ptp)
    {
        // Create an array of buffers at ptp the size of the
        // THREADPROPERTIES structure and set all of the
        // buffers at ptp to 0.
        memset(ptp, 0, sizeof (THREADPROPERTIES));

        // Check if there is a valid THREADPROPERTY_FIELDS and the TPF_ID flag is set.
        if (dwFields & TPF_ID)
        {
            // Check for successful assignment of the current thread ID to
            // the dwThreadId of the passed THREADPROPERTIES.
            if (GetThreadId(&(ptp->dwThreadId)) == S_OK)
            {
                // Set the TPF_ID flag in the THREADPROPERTY_FIELDS enumerator
                // of the passed THREADPROPERTIES.
                ptp->dwFields |= TPF_ID;
            }
        }

        hr = S_OK;
    }
    else
        hr = E_INVALIDARG;

    return hr;
}

Vedi anche