| 232 | } |
| 233 | |
| 234 | static ProfileResult ScopeBegin(void*, const char* name, uint64_t name_hash) |
| 235 | { |
| 236 | (void)name_hash; |
| 237 | CHECK_INITIALIZED_RETVAL(PROFILE_RESULT_NOT_INITIALIZED); |
| 238 | DM_MUTEX_SCOPED_LOCK(g_Lock); |
| 239 | dmProfileJSBeginMark(GetThreadId(), name); |
| 240 | return PROFILE_RESULT_OK; |
| 241 | } |
| 242 | |
| 243 | static ProfileResult ScopeEnd(void*, const char* name, uint64_t name_hash) |
| 244 | { |
nothing calls this directly
no test coverage detected