aboutsummaryrefslogtreecommitdiffstats
path: root/common/fdlimit
Commit message (Collapse)AuthorAgeFilesLines
* all: update author list and licensesPéter Szilágyi2019-07-221-1/+1
|
* common/fdlimit: fix macos file descriptors for Go 1.12Péter Szilágyi2019-02-273-1/+73
|
* common/fdlimit: Fix compilation error in freebsd, Raise() returns uint64 ↵Enrique Fynn2019-02-211-1/+1
| | | | | (#19141) cast limit.Cur (int64) to uint64, fix test and compilation error
* common/fdlimit: fix windows build (#19068)Felix Lange2019-02-141-4/+6
|
* common/fdlimit: cap on MacOS file limits, fixes #18994 (#19035)Martin Holst Swende2019-02-124-11/+19
| | | | | | | | | | | | | | | | * common/fdlimit: cap on MacOS file limits, fixes #18994 * common/fdlimit: fix Maximum-check to respect OPEN_MAX * common/fdlimit: return error if OPEN_MAX is exceeded in Raise() * common/fdlimit: goimports * common/fdlimit: check value after setting fdlimit * common/fdlimit: make comment a bit more descriptive * cmd/utils: make fdlimit happy path a bit cleaner
* all: update license information (#16089)Felix Lange2018-02-144-29/+29
|
* common/fdlimit: Move fdlimit files to separate package (#15850)Ricardo Domingos2018-01-124-0/+216
* common/fdlimit: Move fdlimit files to separate package When go-ethereum is used as a library the calling program need to set the FD limit. This commit extract fdlimit files to a separate package so it can be used outside of go-ethereum. * common/fdlimit: Remove FdLimit from functions signature * common/fdlimit: Rename fdlimit functions