summaryrefslogtreecommitdiff
path: root/src/mongo/util/net/socket_poll.h
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2017-07-07 11:45:50 -0400
committerAndrew Morrow <acm@mongodb.com>2017-07-08 15:08:24 -0400
commit8b2dab9bd3a9d26429eb200b118aa6eac542a06a (patch)
tree6650d4b786b08d4310830f20c0d07405453c7363 /src/mongo/util/net/socket_poll.h
parent096951f7bc0b7f9cc8d3b6e3334fc74c101fb9c1 (diff)
downloadmongo-8b2dab9bd3a9d26429eb200b118aa6eac542a06a.tar.gz
SERVER-30065 Do libdeps dependency types by section, not tuple
Diffstat (limited to 'src/mongo/util/net/socket_poll.h')
-rw-r--r--src/mongo/util/net/socket_poll.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/mongo/util/net/socket_poll.h b/src/mongo/util/net/socket_poll.h
deleted file mode 100644
index 379dc8226be..00000000000
--- a/src/mongo/util/net/socket_poll.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * Copyright 2012 10gen Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * As a special exception, the copyright holders give permission to link the
- * code of portions of this program with the OpenSSL library under certain
- * conditions as described in each individual source file and distribute
- * linked combinations including the program with the OpenSSL library. You
- * must comply with the GNU Affero General Public License in all respects
- * for all of the code used other than as permitted herein. If you modify
- * file(s) with this exception, you may extend this exception to your
- * version of the file(s), but you are not obligated to do so. If you do not
- * wish to do so, delete this exception statement from your version. If you
- * delete this exception statement from all source files in the program,
- * then also delete it in the license file.
- */
-
-#pragma once
-
-#ifndef _WIN32
-#include <sys/poll.h>
-#endif // ndef _WIN32
-
-namespace mongo {
-bool isPollSupported();
-int socketPoll(pollfd* fdarray, unsigned long nfds, int timeout);
-}