aboutsummaryrefslogtreecommitdiffstats
path: root/ipc/gate.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/ipc: move from ipcDmitry Vyukov2017-06-171-76/+0
|
* fuzzer: improve kmemleak logicDmitry Vyukov2016-03-101-10/+32
| | | | | | | | | | | Kmemleak has false positives. To mitigate most of them, it checksums potentially leaked objects, and reports them only on the next scan iff the checksum does not change. Because of that we do the following intricate dance: Scan, sleep, scan again. At this point we can get some leaks. If there are leaks, we sleep and scan again, this can remove false leaks. Then, read kmemleak again. If we get leaks now, then hopefully these are true positives during the previous testing cycle.
* move Gate type to ipc package and use it in stress toolDmitry Vyukov2015-12-171-0/+54
This allows to print what programs stress executes.