summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorvasiljevic <zv@archiware.com>2006-03-10 14:23:50 (GMT)
committervasiljevic <zv@archiware.com>2006-03-10 14:23:50 (GMT)
commit23596eee23da84c3e56fadc163dc8a2734b8f453 (patch)
treea9f7dfb5b17f88ab0742fb1520c8596cf5a75f8e /unix
parent08a3195989ceab4f125251811949e85431265fec (diff)
downloadtcl-23596eee23da84c3e56fadc163dc8a2734b8f453.zip
tcl-23596eee23da84c3e56fadc163dc8a2734b8f453.tar.gz
tcl-23596eee23da84c3e56fadc163dc8a2734b8f453.tar.bz2
Added no-op TclpFinalizeSockets()
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixSock.c24
1 files changed, 23 insertions, 1 deletions
diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c
index 8e5e3b7..a85fee4 100644
--- a/unix/tclUnixSock.c
+++ b/unix/tclUnixSock.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixSock.c,v 1.6 2002/02/27 01:16:43 hobbs Exp $
+ * RCS: @(#) $Id: tclUnixSock.c,v 1.6.2.1 2006/03/10 14:23:50 vasiljevic Exp $
*/
#include "tcl.h"
@@ -148,3 +148,25 @@ TclpHasSockets(interp)
{
return TCL_OK;
}
+
+/*
+ *----------------------------------------------------------------------
+ *
+ * TclpFinalizeSockets --
+ *
+ * Performs per-thread socket subsystem finalization.
+ *
+ * Results:
+ * None.
+ *
+ * Side effects:
+ * None.
+ *
+ *----------------------------------------------------------------------
+ */
+
+void
+TclpFinalizeSockets()
+{
+ return;
+}