diff options
author | Tim Rowley <[email protected]> | 2016-08-04 13:06:49 -0600 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2016-08-10 11:08:11 -0500 |
commit | a83beb936e6fb2caccea45d39f6d06da12575a6e (patch) | |
tree | e08f29917297dac8bb85a6e036380a19e1a8ac41 /src/gallium | |
parent | 29e1c4a8a9f26ce41aa53dc9bf39852a8530adc6 (diff) |
swr: [rasterizer core] remove cygwin threads.cpp stubs
Signed-off-by: Tim Rowley <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/core/threads.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/core/threads.cpp b/src/gallium/drivers/swr/rasterizer/core/threads.cpp index 143a77fb4dc..434c8cb96ee 100644 --- a/src/gallium/drivers/swr/rasterizer/core/threads.cpp +++ b/src/gallium/drivers/swr/rasterizer/core/threads.cpp @@ -221,16 +221,6 @@ void CalculateProcessorTopology(CPUNumaNodes& out_nodes, uint32_t& out_numThread } } -#elif defined(__CYGWIN__) - - // Dummy data just to compile - NumaNode node; - Core core; - core.threadIds.push_back(0); - node.cores.push_back(core); - out_nodes.push_back(node); - out_numThreadsPerProcGroup = 1; - #else #error Unsupported platform @@ -277,10 +267,6 @@ void bindThread(SWR_CONTEXT* pContext, uint32_t threadId, uint32_t procGroupId = SetThreadGroupAffinity(GetCurrentThread(), &affinity, nullptr); -#elif defined(__CYGWIN__) - - // do nothing - #else cpu_set_t cpuset; |