René's URL Explorer Experiment


Title: A crash related to ElfParser::loadSymbolTable · Issue #191 · DataDog/java-profiler · GitHub

Open Graph Title: A crash related to ElfParser::loadSymbolTable · Issue #191 · DataDog/java-profiler

X Title: A crash related to ElfParser::loadSymbolTable · Issue #191 · DataDog/java-profiler

Description: Hi, I encountered a crash today, after some investigation, I think I have found the reason. I ran java-profiler using the command bellow. Run with Datadog Java agent can trigger this crash too (not tested). /usr/lib/jvm/java-8-openjdk-am...

Open Graph Description: Hi, I encountered a crash today, after some investigation, I think I have found the reason. I ran java-profiler using the command bellow. Run with Datadog Java agent can trigger this crash too (not...

X Description: Hi, I encountered a crash today, after some investigation, I think I have found the reason. I ran java-profiler using the command bellow. Run with Datadog Java agent can trigger this crash too (not...

Opengraph URL: https://github.com/DataDog/java-profiler/issues/191

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"A crash related to ElfParser::loadSymbolTable","articleBody":"Hi,\n\nI encountered a crash today, after some investigation, I think I have found the reason.\n\nI ran java-profiler using the command bellow. Run with Datadog Java agent can trigger this crash too (not tested).\n\n/usr/lib/jvm/java-8-openjdk-amd64/bin/java -agentpath:/root/java-profiler/ddprof-lib/build/lib/main/release/linux/x64/libjavaProfiler.so=start,cpu=10ms,file=/tmp/ap.jfr -cp java Demo (Any Java code can reproduce)\n\n```\nopenjdk version \"1.8.0_442\"\nOpenJDK Runtime Environment (build 1.8.0_442-8u442-b06~us1-0ubuntu1~24.04-b06)\nOpenJDK 64-Bit Server VM (build 25.442-b06, mixed mode)\n```\n\n```\n#0  __pthread_kill_implementation (no_tid=0, signo=6, threadid=\u003coptimized out\u003e) at ./nptl/pthread_kill.c:44\n#1  __pthread_kill_internal (signo=6, threadid=\u003coptimized out\u003e) at ./nptl/pthread_kill.c:78\n#2  __GI___pthread_kill (threadid=\u003coptimized out\u003e, signo=signo@entry=6) at ./nptl/pthread_kill.c:89\n#3  0x00007ffff7c4527e in __GI_raise (sig=sig@entry=6) at ../sysdeps/posix/raise.c:26\n#4  0x00007ffff7c288ff in __GI_abort () at ./stdlib/abort.c:79\n#5  0x00007ffff6df6f0b in os::abort(bool) [clone .cold] () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#6  0x00007ffff7757a6d in VMError::report_and_die() () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#7  0x00007ffff759d0fd in JVM_handle_linux_signal () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#8  0x00007ffff759024c in signalHandler(int, siginfo_t*, void*) () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#9  \u003csignal handler called\u003e\n#10 0x0000000000000000 in ?? ()\n#11 0x00007ffff6b64e67 in J9Ext::GetOSThreadID (thread=0x7ffff027b930) at /root/java-profiler/ddprof-lib/src/main/cpp/j9Ext.h:97\n#12 VMThread::nativeThreadId (jni=jni@entry=0x7ffff026e260, thread=thread@entry=0x7ffff027b930) at /root/java-profiler/ddprof-lib/src/main/cpp/vmStructs.cpp:713\n#13 0x00007ffff6b3a811 in Profiler::updateThreadName (this=this@entry=0x7ffff0005180, jvmti=jvmti@entry=0x7ffff0019930, jni=jni@entry=0x7ffff026e260, thread=thread@entry=0x7ffff027b930, self=self@entry=true) at /root/java-profiler/ddprof-lib/src/main/cpp/profiler.cpp:935\n#14 0x00007ffff6b3a92e in Profiler::onThreadStart (this=0x7ffff0005180, jvmti=0x7ffff0019930, jni=0x7ffff026e260, thread=0x7ffff027b930) at /root/java-profiler/ddprof-lib/src/main/cpp/profiler.cpp:111\n#15 0x00007ffff73e522e in JvmtiExport::post_thread_start(JavaThread*) () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#16 0x00007ffff732c0d8 in JNI_CreateJavaVM () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#17 0x00007ffff7f8b45a in JavaMain () from /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/../lib/amd64/jli/libjli.so\n#18 0x00007ffff7f8f961 in call_continuation () from /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/../lib/amd64/jli/libjli.so\n#19 0x00007ffff7c9caa4 in start_thread (arg=\u003coptimized out\u003e) at ./nptl/pthread_create.c:447\n#20 0x00007ffff7d29c3c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78\n```\nAccording to the stack trace, there must be something wrong with the VMStructs parsing, J9Ext should not be called on OpenJDK 8.\nhttps://github.com/DataDog/java-profiler/blob/cc989245c15b94db4b9d6a82543789d9c1336435/ddprof-lib/src/main/cpp/vmStructs.cpp#L708-L714\n\nDebugging with debug build of java-profiler, I found `gHotSpotVMStructs` can not be found, then VMStructs::initOffsets returned in line vmStructs.cpp:164.\nhttps://github.com/DataDog/java-profiler/blob/cc989245c15b94db4b9d6a82543789d9c1336435/ddprof-lib/src/main/cpp/vmStructs.cpp#L155-L165\n\nAfter further debugging, I found some symbols are skipped in line symbols_linux.cpp:357.\nhttps://github.com/DataDog/java-profiler/blob/cc989245c15b94db4b9d6a82543789d9c1336435/ddprof-lib/src/main/cpp/symbols_linux.cpp#L357\n\nhttps://github.com/DataDog/java-profiler/blob/cc989245c15b94db4b9d6a82543789d9c1336435/ddprof-lib/src/main/cpp/symbols_linux.cpp#L350-L367\n\nIn my case, the symbols are all stripped from libjvm.so, and stored in a separate file, which can be installed via `apt-get install openjdk-8-dbg`.\nbut line symbols_linux.cpp:357 compares the virtual address offset (i.e. sym-\u003est_value, 0xdd82b8 = 14516920) with the debug file size (i.e. 2675232), and obviously, 14516920 is greater than 2675232, then symbol `gHotSpotVMStructs` is skipped.\n\nI think the virtual address offset (sym-\u003est_value,) should not be compared with debug file size (_length).\n\n```\nfile /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=734da9c23b83138419928d48e1cc65c9b75facc3, stripped\n\nls -rtl /usr/lib/debug/.build-id/73/4da9c23b83138419928d48e1cc65c9b75facc3.debug\n-rw-r--r-- 1 root root 2675232 Jan 26 15:38 /usr/lib/debug/.build-id/73/4da9c23b83138419928d48e1cc65c9b75facc3.debug\n\nreadelf -s -W /usr/lib/debug/.build-id/73/4da9c23b83138419928d48e1cc65c9b75facc3.debug|grep gHotSpotVMStructs\n 41073: 0000000000dd82b8     8 OBJECT  GLOBAL DEFAULT   25 gHotSpotVMStructs\n\n(gdb) p _length\n$1 = 2675232\n\n(gdb) p sym-\u003est_name\n$3 = 1685507\n\n(gdb) p sym-\u003est_value\n$4 = 14516920\n\n(gdb) p/x sym-\u003est_value\n$5 = 0xdd82b8\n\n#0  ElfParser::loadSymbolTable (this=0x7ffff7bfd550, symbols=0x7ffff4af0d20 \"\\003\\270\\031\", total_size=986328, ent_size=24, strings=0x7ffff4af0f60 \"\") at /root/java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpp:366\n#1  0x00007ffff7a9be3d in ElfParser::loadSymbols (this=0x7ffff7bfd550, use_debug=false) at /root/java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpp:258\n#2  0x00007ffff7a9b4f8 in ElfParser::parseFile (cc=0x7ffff00d7250, base=0x7ffff6c00000 \"\\177ELF\\002\\001\\001\", file_name=0x7ffff7bfd5f0 \"/usr/lib/debug/.build-id/73/4da9c23b83138419928d48e1cc65c9b75facc3.debug\", use_debug=false)\n    at /root/java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpp:85\n#3  0x00007ffff7a9c125 in ElfParser::loadSymbolsUsingBuildId (this=0x7ffff7bfe6b0) at /root/java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpp:304\n#4  0x00007ffff7a9be65 in ElfParser::loadSymbols (this=0x7ffff7bfe6b0, use_debug=true) at /root/java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpp:263\n#5  0x00007ffff7a9b4f8 in ElfParser::parseFile (cc=0x7ffff00d7250, base=0x7ffff6c00000 \"\\177ELF\\002\\001\\001\", file_name=0x7ffff0028349 \"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\", use_debug=true)\n    at /root/java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpp:85\n#6  0x00007ffff7a9cee4 in parseLibrariesCallback (info=0x7ffff7bfe830, size=64, data=0x7ffff7af9e20 \u003cLibraries::instance()::instance\u003e) at /root/java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpp:508\n#7  0x00007ffff7d84002 in __GI___dl_iterate_phdr (callback=0x7ffff7a9cb6b \u003cparseLibrariesCallback(dl_phdr_info*, size_t, void*)\u003e, data=0x7ffff7af9e20 \u003cLibraries::instance()::instance\u003e) at ./elf/dl-iteratephdr.c:74\n#8  0x00007ffff7a9d172 in Symbols::parseLibraries (array=0x7ffff7af9e20 \u003cLibraries::instance()::instance\u003e, kernel_symbols=false) at /root/java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpp:550\n#9  0x00007ffff7abdaa5 in Libraries::updateSymbols (this=0x7ffff7af9e20 \u003cLibraries::instance()::instance\u003e, kernel_symbols=false) at /root/java-profiler/ddprof-lib/src/main/cpp/libraries.cpp:36\n#10 0x00007ffff7a990cc in VM::initShared (vm=0x7ffff79d16c0 \u003cmain_vm\u003e) at /root/java-profiler/ddprof-lib/src/main/cpp/vmEntry.cpp:205\n#11 0x00007ffff7a99593 in VM::initProfilerBridge (vm=0x7ffff79d16c0 \u003cmain_vm\u003e, attach=false) at /root/java-profiler/ddprof-lib/src/main/cpp/vmEntry.cpp:302\n#12 0x00007ffff7a9a282 in Agent_OnLoad (vm=0x7ffff79d16c0 \u003cmain_vm\u003e, options=0x7ffff0003f40 \"start,cpu=10ms,file=/tmp/ap.jfr\", reserved=0x0) at /root/java-profiler/ddprof-lib/src/main/cpp/vmEntry.cpp:551\n#13 0x00007ffff76f6674 in Threads::create_vm_init_agents() () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#14 0x00007ffff76f92e2 in Threads::create_vm(JavaVMInitArgs*, bool*) () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#15 0x00007ffff732c010 in JNI_CreateJavaVM () from /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so\n#16 0x00007ffff7f8b45a in JavaMain () from /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/../lib/amd64/jli/libjli.so\n#17 0x00007ffff7f8f961 in call_continuation () from /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/../lib/amd64/jli/libjli.so\n#18 0x00007ffff7c9caa4 in start_thread (arg=\u003coptimized out\u003e) at ./nptl/pthread_create.c:447\n#19 0x00007ffff7d29c3c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78\n```\n\nThe test does not crash on Java 11, Java 17 and Java 21, but I think It's just a coincidence. The virtual address offset just happens to be smaller than the debug file size on JDK 11, JDK 17 and JDK 21.\n\nI don't know why this check is added. If there is no real example, the simple fix is to remove this check, and I can submit a PR.\n\nThanks.\n","author":{"url":"https://github.com/yanglong1010","@type":"Person","name":"yanglong1010"},"datePublished":"2025-03-06T09:08:42.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/191/java-profiler/issues/191"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:be9cd71b-853a-8618-f323-134771dc3b9c
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA602:28182:2DAD221:40B624C:6A4CFDB5
html-safe-nonce4c4a41c030d076434ad4c8658959b751dcd853ddcef7259c3023cd2bbf8ea771
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNjAyOjI4MTgyOjJEQUQyMjE6NDBCNjI0Qzo2QTRDRkRCNSIsInZpc2l0b3JfaWQiOiIzMzQ3NDcyNzAwMjU5NzYxNTg5IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacc27cf7b7fc25372ec72b218cb4afd4d146209eee3f65dc2907fb84d4e571deaf
hovercard-subject-tagissue:2899805374
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/DataDog/java-profiler/191/issue_layout
twitter:imagehttps://opengraph.githubassets.com/d8c5efa3eb481302f0ac5fc71f230b7588c68573d5affe24c92c2713c23deacb/DataDog/java-profiler/issues/191
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/d8c5efa3eb481302f0ac5fc71f230b7588c68573d5affe24c92c2713c23deacb/DataDog/java-profiler/issues/191
og:image:altHi, I encountered a crash today, after some investigation, I think I have found the reason. I ran java-profiler using the command bellow. Run with Datadog Java agent can trigger this crash too (not...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameyanglong1010
hostnamegithub.com
expected-hostnamegithub.com
None31e4db13a9e20081f2fac78f441659a6576e582bbb15e153f9c7fb6473aa29f5
turbo-cache-controlno-preview
go-importgithub.com/DataDog/java-profiler git https://github.com/DataDog/java-profiler.git
octolytics-dimension-user_id365230
octolytics-dimension-user_loginDataDog
octolytics-dimension-repository_id585532470
octolytics-dimension-repository_nwoDataDog/java-profiler
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id585532470
octolytics-dimension-repository_network_root_nwoDataDog/java-profiler
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasefb70bd3c4b2bec429781b65419e912c66e2d5581
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/DataDog/java-profiler/issues/191#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FDataDog%2Fjava-profiler%2Fissues%2F191
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FDataDog%2Fjava-profiler%2Fissues%2F191
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=DataDog%2Fjava-profiler
Reloadhttps://github.com/DataDog/java-profiler/issues/191
Reloadhttps://github.com/DataDog/java-profiler/issues/191
Reloadhttps://github.com/DataDog/java-profiler/issues/191
Please reload this pagehttps://github.com/DataDog/java-profiler/issues/191
DataDog https://github.com/DataDog
java-profilerhttps://github.com/DataDog/java-profiler
Notifications https://github.com/login?return_to=%2FDataDog%2Fjava-profiler
Fork 12 https://github.com/login?return_to=%2FDataDog%2Fjava-profiler
Star 32 https://github.com/login?return_to=%2FDataDog%2Fjava-profiler
Code https://github.com/DataDog/java-profiler
Issues 8 https://github.com/DataDog/java-profiler/issues
Pull requests 14 https://github.com/DataDog/java-profiler/pulls
Actions https://github.com/DataDog/java-profiler/actions
Security and quality 0 https://github.com/DataDog/java-profiler/security
Insights https://github.com/DataDog/java-profiler/pulse
Code https://github.com/DataDog/java-profiler
Issues https://github.com/DataDog/java-profiler/issues
Pull requests https://github.com/DataDog/java-profiler/pulls
Actions https://github.com/DataDog/java-profiler/actions
Security and quality https://github.com/DataDog/java-profiler/security
Insights https://github.com/DataDog/java-profiler/pulse
A crash related to ElfParser::loadSymbolTablehttps://github.com/DataDog/java-profiler/issues/191#top
https://github.com/yanglong1010
yanglong1010https://github.com/yanglong1010
on Mar 6, 2025https://github.com/DataDog/java-profiler/issues/191#issue-2899805374
java-profiler/ddprof-lib/src/main/cpp/vmStructs.cpphttps://github.com/DataDog/java-profiler/blob/cc989245c15b94db4b9d6a82543789d9c1336435/ddprof-lib/src/main/cpp/vmStructs.cpp#L708-L714
cc98924https://github.com/DataDog/java-profiler/commit/cc989245c15b94db4b9d6a82543789d9c1336435
java-profiler/ddprof-lib/src/main/cpp/vmStructs.cpphttps://github.com/DataDog/java-profiler/blob/cc989245c15b94db4b9d6a82543789d9c1336435/ddprof-lib/src/main/cpp/vmStructs.cpp#L155-L165
cc98924https://github.com/DataDog/java-profiler/commit/cc989245c15b94db4b9d6a82543789d9c1336435
java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpphttps://github.com/DataDog/java-profiler/blob/cc989245c15b94db4b9d6a82543789d9c1336435/ddprof-lib/src/main/cpp/symbols_linux.cpp#L357
cc98924https://github.com/DataDog/java-profiler/commit/cc989245c15b94db4b9d6a82543789d9c1336435
java-profiler/ddprof-lib/src/main/cpp/symbols_linux.cpphttps://github.com/DataDog/java-profiler/blob/cc989245c15b94db4b9d6a82543789d9c1336435/ddprof-lib/src/main/cpp/symbols_linux.cpp#L350-L367
cc98924https://github.com/DataDog/java-profiler/commit/cc989245c15b94db4b9d6a82543789d9c1336435
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.