Skip to content

Commit

Permalink
SharedAlloc: Intel16 seems to have issues
Browse files Browse the repository at this point in the history
This is the first step in addressing issue #186 by fixing a segfault
error in the error reporting mechanism. I believe that the test itself
is not supposed to enter the error reporting mechanism, so something else
probably went wrong before.
  • Loading branch information
crtrott committed Feb 9, 2016
1 parent 9ce3096 commit 4fd2401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/impl/KokkosExp_SharedAlloc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ if ( ! ok ) {
, reinterpret_cast< uintptr_t >( rec->m_root )
, reinterpret_cast< uintptr_t >( rec->m_next )
, reinterpret_cast< uintptr_t >( rec->m_prev )
, reinterpret_cast< uintptr_t >( rec->m_next->m_prev )
, reinterpret_cast< uintptr_t >( rec->m_next != NULL ? rec->m_next->m_prev : NULL )
, reinterpret_cast< uintptr_t >( rec->m_prev != rec->m_root ? rec->m_prev->m_next : root_next )
);
}
Expand Down

0 comments on commit 4fd2401

Please sign in to comment.