mirror of
https://github.com/corda/corda.git
synced 2025-06-18 23:28:21 +00:00
refactor stack walking interface in processor.h and sketch stack walking implementation in compile2.cpp
This commit is contained in:
@ -239,6 +239,12 @@ bitsToFloat(uint32_t bits)
|
||||
return f;
|
||||
}
|
||||
|
||||
inline intptr_t
|
||||
difference(void* a, void* b)
|
||||
{
|
||||
return reinterpret_cast<intptr_t>(a) - reinterpret_cast<intptr_t>(b);
|
||||
}
|
||||
|
||||
class Machine;
|
||||
class Thread;
|
||||
|
||||
|
Reference in New Issue
Block a user