Search Results

1
vote

Is Objective-C 2.0 exception handling supported on non Mac OS X platforms?

Apple uses a variant/fork of the standard GCC, in which Objective-C 2.0 support is built-in. As far as I know, none of the Objective-C 2.0 features exist in the standard GCC. I'm not exactl …
-1
votes

For my app, how many threads would be optimal?

Threading isn't necessary in this case. Your program is I/O bound rather than CPU bound. The networking part would probably be better done using select() on the so …