diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-08-20 04:50:54 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-08-20 04:50:54 +0800 |
commit | e2d44814a513e7a964797b1e3639343e6682a615 (patch) | |
tree | 8320092e4b9660e45cdfbcd284f6f841e3696b2d /fdtrack/fdusage.go | |
parent | bd3a44cac9664ff72584fb123b3348f24c62d066 (diff) | |
parent | 269c5c71072f9e17e6387f853d626bff1160db5c (diff) | |
download | go-tangerine-e2d44814a513e7a964797b1e3639343e6682a615.tar go-tangerine-e2d44814a513e7a964797b1e3639343e6682a615.tar.gz go-tangerine-e2d44814a513e7a964797b1e3639343e6682a615.tar.bz2 go-tangerine-e2d44814a513e7a964797b1e3639343e6682a615.tar.lz go-tangerine-e2d44814a513e7a964797b1e3639343e6682a615.tar.xz go-tangerine-e2d44814a513e7a964797b1e3639343e6682a615.tar.zst go-tangerine-e2d44814a513e7a964797b1e3639343e6682a615.zip |
Merge pull request #1694 from obscuren/hide-fdtrack
fdtrack: hide message
Diffstat (limited to 'fdtrack/fdusage.go')
-rw-r--r-- | fdtrack/fdusage.go | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/fdtrack/fdusage.go b/fdtrack/fdusage.go deleted file mode 100644 index 689625a8f..000000000 --- a/fdtrack/fdusage.go +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright 2015 The go-ethereum Authors -// This file is part of the go-ethereum library. -// -// The go-ethereum library is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// The go-ethereum library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. - -// +build !linux,!darwin - -package fdtrack - -import "errors" - -func fdlimit() int { - return 0 -} - -func fdusage() (int, error) { - return 0, errors.New("not implemented") -} |