diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-22 18:20:44 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-22 18:20:44 +0200 |
| commit | 8e52ba5a8661c717f45e00608ad64f0adc6de3e1 (patch) | |
| tree | c90dcccca9168552d311312ba238e7b84fab9e0d /internal/generate/classify.go | |
| parent | 40ce5bc1d9da31b49f42e488d2ab5633e7c6a3fb (diff) | |
Implement mmap/msync syscall support with unit and integration coverage
Diffstat (limited to 'internal/generate/classify.go')
| -rw-r--r-- | internal/generate/classify.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/generate/classify.go b/internal/generate/classify.go index c55e46f..b79d49c 100644 --- a/internal/generate/classify.go +++ b/internal/generate/classify.go @@ -113,6 +113,8 @@ func classifyNameOnly(name string) (ClassificationResult, bool) { return ClassificationResult{Kind: KindNull}, true case "sys_enter_sync": return ClassificationResult{Kind: KindNull}, true + case "sys_enter_msync": + return ClassificationResult{Kind: KindNull}, true } if strings.HasPrefix(name, "sys_enter_io_") { return ClassificationResult{Kind: KindNull}, true |
