Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13a5df commit e41c1ceCopy full SHA for e41c1ce
1 file changed
Python/perf_jit_trampoline.c
@@ -214,7 +214,11 @@ struct BaseEvent {
214
typedef struct {
215
struct BaseEvent base; // Common event header
216
uint32_t process_id; // Process ID where code was generated
217
+#if defined(__APPLE__)
218
uint64_t thread_id; // Thread ID where code was generated
219
+#else
220
+ uint32_t thread_id; // Thread ID where code was generated
221
+#endif
222
uint64_t vma; // Virtual memory address where code is loaded
223
uint64_t code_address; // Address of the actual machine code
224
uint64_t code_size; // Size of the machine code in bytes
0 commit comments