Difference between pages "r7.1.1:Struct libshared pal thread info" and "r7.1.1:Struct libtest results state"

From liblfds.org
(Difference between pages)
Jump to navigation Jump to search
m (1 revision imported)
 
m (1 revision imported)
 
Line 1: Line 1:
{{DISPLAYTITLE:struct libshared_pal_thread_info}}
{{DISPLAYTITLE:struct libtest_results_state}}
==Source File==
==Source File==
  └───test_and_benchmark
  └── test_and_benchmark
     └───libshared
     └── libtest
         └───inc
         └── inc
             └───libshared
             └── libtest
                    libtest_porting_abstraction_layer.h
                └── libtest_results.h


==Opaque Structure==
==Opaque Structure==
  struct libshared_pal_thread_info;
  struct libtest_results_state;


==Alignment==
==Alignment==
Line 14: Line 14:


==Notes==
==Notes==
This structure contains all the information necessary to start a thread on a specified logcial processor.  A set of macros are provided to read this information from the structure.
This structure is the main state used by the ''libtest'' library to store test results.


==See Also==
==See Also==
* [[r7.1.1:Porting Guide (libshared)|Porting Guide (libshared)]]
* [[r7.1.1:Usage Guide (libtest)|Usage Guide (libtest)]]
* [[r7.1.1:macro LIBSHARED_PAL_PTI_GET_LOGICAL_PROCESSOR_NUMBER|LIBSHARED_PAL_PTI_GET_LOGICAL_PROCESSOR_NUMBER]]
* [[r7.1.1:macro LIBSHARED_PAL_PTI_GET_WINDOWS_PROCESSOR_GROUP_NUMBER|LIBSHARED_PAL_PTI_GET_WINDOWS_PROCESSOR_GROUP_NUMBER]]
* [[r7.1.1:macro LIBSHARED_PAL_PTI_GET_NUMA_NODE|LIBSHARED_PAL_PTI_GET_NUMA_NODE]]
* [[r7.1.1:macro LIBSHARED_PAL_PTI_GET_THREAD_FUNCTION|LIBSHARED_PAL_PTI_GET_THREAD_FUNCTION]]
* [[r7.1.1:macro LIBSHARED_PAL_PTI_GET_THREAD_ARGUMENT|LIBSHARED_PAL_PTI_GET_THREAD_ARGUMENT]]

Latest revision as of 20:16, 17 February 2017

Source File

└── test_and_benchmark
    └── libtest
        └── inc
            └── libtest
                └── libtest_results.h

Opaque Structure

struct libtest_results_state;

Alignment

No alignment requirements.

Notes

This structure is the main state used by the libtest library to store test results.

See Also