aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/osutil/sharedmem_file.go
Commit message (Collapse)AuthorAgeFilesLines
* all: delete dead codeTaras Madan2025-02-101-41/+0
| | | | | go install golang.org/x/tools/cmd/deadcode@latest deadcode -test ./...
* all: go fix everythingDmitry Vyukov2024-04-261-1/+0
|
* pkg/osutil: use memfd_create on LinuxAleksandr Nogikh2021-12-031-0/+42
Mmapping plain files as shared memory leads to extra burden on the system being fuzzed, because the OS will periodically sync that data to the disk. On Linux, use memfd_create to obtain a file handle for the shared memory region. Experiments have demonstrated than it leads to 5-10% increase in the fuzzing performance.