> signal(SIGINT, report); > signal(SIGTERM, report); Btw - I worked around adding cdecl before main by disabling the warning. Since main must be cdecl by default, the compiler fixes it, but spits out a warning. For some reason unknown to me, the warning only occurs when building 32-bit apps.
However, signal() requires that the function be cdecl as well. The above two calls fail to compile on 32-bit Windows platforms, so I'm still working on this. The simple approach of changing the compiler options doesn't work as easily as it looks like it should. The WDK build environment is 'special'. - Sean _______________________________________________ general mailing list [email protected] http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general
