| 1036 | } |
| 1037 | |
| 1038 | BF_EXPORT void BF_CALLTYPE Breakpoint_SetThreadId(Breakpoint* breakpoint, intptr threadId) |
| 1039 | { |
| 1040 | BfLogDbg("Breakpoint %p set ThreadId=%d\n", breakpoint, threadId); |
| 1041 | breakpoint->mThreadId = threadId; |
| 1042 | gDebugger->CheckBreakpoint(breakpoint); |
| 1043 | } |
| 1044 | |
| 1045 | BF_EXPORT int BF_CALLTYPE Breakpoint_GetHitCount(Breakpoint* breapoint) |
| 1046 | { |
nothing calls this directly
no test coverage detected