SystemTap
1 program
Added 2026-02-06T14:26:13Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: stap
Provenance: commit 1660a3e3fb · authored 2026-02-06T15:26:58+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
System Call Monitor
Provenance: commit 1660a3e3fb · authored 2026-02-06T15:26:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
#!/usr/bin/env stap
global syscall_count
probe begin {
printf("Starting system call monitoring...\n")
}
probe kernel.function("sys_*") {
syscall_count[probefunc()]++
}
probe end {
printf("\nSystem call statistics:\n")
foreach (syscall in syscall_count-)
printf("%s: %d\n", syscall, syscall_count[syscall])
}