> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# chat_manager::get_thread_processor

> chat_manager::get_thread_processor

# chat\_manager::get\_thread\_processor

Retrieves the current processor on which internal Game Chat threads will run or are running.

## Syntax

```cpp theme={null}
void get_thread_processor(  
    game_chat_thread_id threadId,  
    uint32_t* processorNumber  
)  
```

### Parameters

*threadId*   \_In\_\
Type: [game\_chat\_thread\_id](/reference/chat/gamechat2/enums/game_chat_thread_id)

The type of internal Game Chat thread for which processor affinity should be retrieved.\
The internal thread to retrieve the process number for.

*processorNumber*   \_Out\_\
Type: uint32\_t\*

A place to store the zero-based processor number on which the internal Game Chat threads will run or are running.

### Return value

Type: void

## Remarks

This retrieves the current processor affinity for internal Game Chat threads of a given type.

This method does not require chat\_manager::initialize() to have been called first.

A reported value of `c_anyProcessorNumber` written to *processorNumber* indicates that the thread is free to run on any processor.

<Note>`c_anyProcessorNumber` is a `constexpr uint32_t` with a value of 0xFFFFFFFF.</Note>

<Note>This call will result in a fatal failure if a prior call to [chat\_manager::set\_thread\_affinity\_mask](/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_set_thread_affinity_mask) has configured the Game Chat internal threads specified by *threadID* to run on more than one processor. In that case, [chat\_manager::get\_thread\_affinity\_mask](/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_get_thread_affinity_mask) should be used instead.</Note>

## Requirements

**Header:** GameChat2.h

**Supported platforms:** Windows, XBOX One family consoles and XBOX Series consoles

## See also

[chat\_manager](/reference/chat/gamechat2/classes/chat_manager/chat_manager)\
[game\_chat\_thread\_id](/reference/chat/gamechat2/enums/game_chat_thread_id)\
[chat\_manager::set\_thread\_processor](/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_set_thread_processor)


## Related topics

- [chat_manager::set_thread_processor](/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_set_thread_processor.md)
- [game_chat_thread_id](/reference/chat/gamechat2/enums/game_chat_thread_id.md)
- [chat_manager::initialize](/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_initialize.md)
- [chat_manager::get_thread_affinity_mask](/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_get_thread_affinity_mask.md)
- [chat_manager::set_thread_affinity_mask](/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_set_thread_affinity_mask.md)
