Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs for WinNT#LOGICAL_PROCESSOR_RELATIONSHIP #1563

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 5 additions & 8 deletions contrib/platform/src/com/sun/jna/platform/win32/WinNT.java
Original file line number Diff line number Diff line change
Expand Up @@ -3447,26 +3447,23 @@ public interface LOGICAL_PROCESSOR_RELATIONSHIP {

/**
* <p>
* Upcoming value of this enum added for forward compatibility. Documentation
* will be added when available.
* The specified logical processors share a single processor die.
* </p>
*/
int RelationProcessorDie = 5;

/**
* <p>
* Introduced in TBD - Release Iron. Requests that the full affinity be
* returned. Unlike the other relation types, RelationNumaNodeEx is not used on
* input. It is simply a request for RelationNumaNode with full group
* information.
* Introduced in Windows Server 2022 (21H2, build 20348). Requests that the full affinity be returned. Unlike
* the other relation types, RelationNumaNodeEx is not used on input. It is simply a request for
* RelationNumaNode with full group information.
* </p>
*/
int RelationNumaNodeEx = 6;

/**
* <p>
* Upcoming value of this enum added for forward compatibility. Documentation
* will be added when available.
* The specified logical processors share a single processor module.
* </p>
*/
int RelationProcessorModule = 7;
Expand Down