-
Hello, I was wondering if runtime/src/coreclr/gc/unix/gcenv.unix.cpp Lines 1411 to 1425 in 7993e51 It is surely compiled but setting a breakpoint to (gdb) info b
Num Type Disp Enb Address What
1 breakpoint keep y 0x00007ffff7076a95 in GCToOSInterface::QueryPerformanceCounter() at /home/leee/dotnet/runtime/src/coreclr/vm/gcenv.os.cpp:1019
breakpoint already hit 2 times I'd appreciate it If you tell me why the same function exists. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The GC linked into libcoreclr.so uses the implementation from gcenv.os.cpp. The implementation in gcenv.unix.cpp is used for standalone GC library and for native AOT. The plan is to delete gcenv.os.cpp and use gcenv.unix.cpp everywhere: #72684 |
Beta Was this translation helpful? Give feedback.
The GC linked into libcoreclr.so uses the implementation from gcenv.os.cpp.
The implementation in gcenv.unix.cpp is used for standalone GC library and for native AOT.
The plan is to delete gcenv.os.cpp and use gcenv.unix.cpp everywhere: #72684