aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/iomgr_posix.cc
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-10-05 10:13:58 -0700
committerGravatar GitHub <noreply@github.com>2017-10-05 10:13:58 -0700
commitc277fc0818eb2e7408db6758c9690bb4eb2c6ff7 (patch)
tree39d7303f599411ab00e780a26477d34be72b6ace /src/core/lib/iomgr/iomgr_posix.cc
parentd6b7a28e36a84e67a64a7ddd6d4ebba0f783f912 (diff)
parent70d3424005f30ff651768b2a86a1fa6f1158eb67 (diff)
Merge pull request #12692 from yashykt/externC
Converting src/core files from C to CC
Diffstat (limited to 'src/core/lib/iomgr/iomgr_posix.cc')
-rw-r--r--src/core/lib/iomgr/iomgr_posix.cc41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/iomgr_posix.cc b/src/core/lib/iomgr/iomgr_posix.cc
new file mode 100644
index 0000000000..f5875a247e
--- /dev/null
+++ b/src/core/lib/iomgr/iomgr_posix.cc
@@ -0,0 +1,41 @@
+/*
+ *
+ * Copyright 2015 gRPC authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include "src/core/lib/iomgr/port.h"
+
+#ifdef GRPC_POSIX_SOCKET
+
+#include "src/core/lib/debug/trace.h"
+#include "src/core/lib/iomgr/ev_posix.h"
+#include "src/core/lib/iomgr/iomgr_posix.h"
+#include "src/core/lib/iomgr/tcp_posix.h"
+
+void grpc_iomgr_platform_init(void) {
+ grpc_wakeup_fd_global_init();
+ grpc_event_engine_init();
+ grpc_register_tracer(&grpc_tcp_trace);
+}
+
+void grpc_iomgr_platform_flush(void) {}
+
+void grpc_iomgr_platform_shutdown(void) {
+ grpc_event_engine_shutdown();
+ grpc_wakeup_fd_global_destroy();
+}
+
+#endif /* GRPC_POSIX_SOCKET */