Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-Jun-2019 | - | ||||
README | H A D | 06-Oct-2015 | 1.3 KiB | 37 | 29 | |
hwloc-annotate.vcxproj | H A D | 06-Oct-2015 | 4.8 KiB | 91 | 90 | |
hwloc-annotate.vcxproj.filters | H A D | 06-Oct-2015 | 2.6 KiB | 70 | 69 | |
hwloc-assembler.vcxproj | H A D | 06-Oct-2015 | 4.8 KiB | 91 | 90 | |
hwloc-assembler.vcxproj.filters | H A D | 07-Oct-2014 | 2.6 KiB | 70 | 69 | |
hwloc-bind.vcxproj | H A D | 06-Oct-2015 | 4.8 KiB | 92 | 91 | |
hwloc-bind.vcxproj.filters | H A D | 06-Oct-2015 | 2.7 KiB | 73 | 72 | |
hwloc-calc.vcxproj | H A D | 06-Oct-2015 | 4.8 KiB | 92 | 91 | |
hwloc-calc.vcxproj.filters | H A D | 06-Oct-2015 | 2.7 KiB | 73 | 72 | |
hwloc-diff.vcxproj | H A D | 06-Oct-2015 | 4.7 KiB | 90 | 89 | |
hwloc-diff.vcxproj.filters | H A D | 06-Oct-2015 | 2.5 KiB | 67 | 66 | |
hwloc-distances.vcxproj | H A D | 06-Oct-2015 | 4.8 KiB | 91 | 90 | |
hwloc-distances.vcxproj.filters | H A D | 06-Oct-2015 | 2.6 KiB | 70 | 69 | |
hwloc-distrib.vcxproj | H A D | 06-Oct-2015 | 4.8 KiB | 91 | 90 | |
hwloc-distrib.vcxproj.filters | H A D | 06-Oct-2015 | 2.6 KiB | 70 | 69 | |
hwloc-info.vcxproj | H A D | 06-Oct-2015 | 4.8 KiB | 92 | 91 | |
hwloc-info.vcxproj.filters | H A D | 06-Oct-2015 | 2.7 KiB | 73 | 72 | |
hwloc-patch.vcxproj | H A D | 06-Oct-2015 | 4.7 KiB | 90 | 89 | |
hwloc-patch.vcxproj.filters | H A D | 06-Oct-2015 | 2.5 KiB | 67 | 66 | |
hwloc.sln | H A D | 21-Aug-2016 | 7.5 KiB | 122 | 120 | |
hwloc_config.h | H A D | 13-Apr-2016 | 1.3 KiB | 53 | 29 | |
libhwloc.vcxproj | H A D | 06-Oct-2015 | 12.7 KiB | 239 | 238 | |
libhwloc.vcxproj.filters | H A D | 06-Oct-2015 | 4.4 KiB | 124 | 123 | |
lstopo-no-graphics.vcxproj | H A D | 06-Oct-2015 | 5.2 KiB | 98 | 97 | |
lstopo-no-graphics.vcxproj.filters | H A D | 06-Oct-2015 | 3.3 KiB | 91 | 90 | |
lstopo-win.vcxproj | H A D | 06-Oct-2015 | 5.4 KiB | 100 | 99 | |
lstopo-win.vcxproj.filters | H A D | 06-Oct-2015 | 3.4 KiB | 94 | 93 | |
lstopo.vcxproj | H A D | 06-Oct-2015 | 5.3 KiB | 99 | 98 | |
lstopo.vcxproj.filters | H A D | 06-Oct-2015 | 3.4 KiB | 94 | 93 | |
private_config.h | H A D | 13-Dec-2018 | 19.5 KiB | 695 | 87 | |
static-components.h | H A D | 17-Mar-2014 | 796 | 18 | 17 |
README
1This Visual Studio support is experimental. 2Thanks to Eloi Gaudry for contributing the first draft of files. 3 4 5No PlatformToolset is specified, so that the default target is always 6used during build. 7That means your build may not be compatible with older systems. 8Enforce a specific toolset before building if needed. 9 10 11hwloc-assembler-remote is not built because it requires a hardwired 12path to hwloc-assembler and it uses ssh. 13 14hwloc-compress-dir not built because needs work. 15 16hwloc-gather-topology is Linux specific. 17 18hwloc-ps is not built because it does nothing on Windows anyway. 19Possible code proposed by Eloi Gaudry: 20 // Get the process list snapshot 21 HANDLE hProcessSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPALL, 0); 22 // Initialize the process entry structure 23 PROCESSENTRY32 ProcessEntry = { 0 } ; 24 ProcessEntry.dwSize = sizeof(ProcessEntry); 25 // Get the first process info 26 if (Process32First( hProcessSnapShot, &ProcessEntry)) { 27 do { 28 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, ProcessEntry.th32ProcessID) ; 29 if (hProcess) { 30 std::cerr << ProcessEntry.th32ProcessID << "(" << ProcessEntry.szExeFile << ")" << std::endl ; 31 } 32 // check the PROCESSENTRY32 for other members. 33 } while (Process32Next(hProcessSnapShot, &ProcessEntry)); 34 // Close the handle 35 CloseHandle( hProcessSnapShot ) ; 36 } 37