/*
- * $Id: stub_comm.cc,v 1.4 2006/09/03 19:34:15 serassio Exp $
+ * $Id: stub_comm.cc,v 1.5 2006/09/14 20:13:23 serassio Exp $
*
* DEBUG: section 84 Helper process maintenance
* AUTHOR: Robert Collins
RESERVED_FD = XMIN(100, Squid_MaxFD / 4);
}
+/* MinGW needs also a stub of _comm_close() */
+void
+_comm_close(int fd, char const *file, int line)
+{
+ fatal ("Not implemented");
+}
/*
- * $Id: stub_tools.cc,v 1.2 2006/05/08 23:38:35 robertc Exp $
+ * $Id: stub_tools.cc,v 1.3 2006/09/14 20:13:23 serassio Exp $
*
* AUTHOR: Robert Collins
*
return b ? ((int) (100.0 * a / b + 0.5)) : 0;
}
+/* MinGW needs also a stub of death() */
+void
+death(int sig)
+{
+ fatal ("Not implemented");
+}