Commit c5b7f4f5 authored by Luca Boccassi's avatar Luca Boccassi

Problem: test_system info output hidden on Solaris

Solution: change the ifdef to always print on any Unix, as they
all have ulimit
parent 510a42c3
......@@ -90,10 +90,8 @@ int main (void)
printf ("W: Only able to create %d sockets on this box\n", count);
printf (
"I: Tune your system to increase maximum allowed file handles\n");
#if defined(ZMQ_HAVE_OSX)
printf ("I: On OS/X, run 'ulimit -n 1200' in bash\n");
#elif defined(ZMQ_HAVE_LINUX)
printf ("I: On Linux, run 'ulimit -n 1200' in bash\n");
#if !defined(ZMQ_HAVE_WINDOWS)
printf ("I: Run 'ulimit -n 1200' in bash\n");
#endif
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment