aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/nifs/common/socket_dbg.h
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2018-06-15 18:51:48 +0200
committerMicael Karlberg <[email protected]>2018-09-18 14:50:18 +0200
commit1b31432a2c60364dc3e7b2a18fa8494475344271 (patch)
treea73474fad75a0c25ca6175789f5d97370c836731 /erts/emulator/nifs/common/socket_dbg.h
parentef34944c970f842a7406f59c827243c8be77fdc2 (diff)
downloadotp-1b31432a2c60364dc3e7b2a18fa8494475344271.tar.gz
otp-1b31432a2c60364dc3e7b2a18fa8494475344271.tar.bz2
otp-1b31432a2c60364dc3e7b2a18fa8494475344271.zip
[socket+net-nif] Introduced a couple of common files
Started to move the common stuff, such as common utility functions, debug and encode / decode of basic types. OTP-14831
Diffstat (limited to 'erts/emulator/nifs/common/socket_dbg.h')
-rw-r--r--erts/emulator/nifs/common/socket_dbg.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/erts/emulator/nifs/common/socket_dbg.h b/erts/emulator/nifs/common/socket_dbg.h
new file mode 100644
index 0000000000..36e2be1679
--- /dev/null
+++ b/erts/emulator/nifs/common/socket_dbg.h
@@ -0,0 +1,41 @@
+/*
+ * %CopyrightBegin%
+ *
+ * Copyright Ericsson AB 2018-2018. All Rights Reserved.
+ *
+ * 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.
+ *
+ * %CopyrightEnd%
+ *
+ * ----------------------------------------------------------------------
+ * Purpose : Defines and macros for the debug util of the socket and
+ * net NIF(s).
+ * ----------------------------------------------------------------------
+ *
+ */
+
+#ifndef SOCKET_DBG_H__
+#define SOCKET_DBG_H__
+
+
+#define ESOCK_DBG_PRINTF( ___COND___ , proto ) \
+ if ( ___COND___ ) { \
+ esock_dbg_printf proto; \
+ fflush(stdout); \
+ }
+
+
+extern
+void esock_dbg_printf( const char* prefix, const char* format, ... );
+
+#endif // SOCKET_DBG_H__