Replies: 2 comments
-
This reduce the problem but not solve it. BTW, it would require linkTrace() method to return smth, right ? |
Beta Was this translation helpful? Give feedback.
-
return void is just fine. It is like the normal chaining that you are doing for years. #define BX_EXECUTE_INSTRUCTION(i) { If you still see a stack problem with the "return linkTrace(i);" I think that there is a mistake in some point in the chaining and that should be investigates and solved. I din't know this chaining trick. You told me a few years ago in an old conversation. |
Beta Was this translation helpful? Give feedback.
-
Why not using
#define BX_LINK_TRACE(i) {
BX_COMMIT_INSTRUCTION(i);
return linkTrace(i);
}
same as normal instruction chaining? That avoids the need of the depth limits.
I'm trying it and it seems working well. Also with MP.
Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions