irishjohnnie's comments

irishjohnnie | 3 years ago | on: DARPA wants to combine traditional sealift and airlift

Are you referring to the ballpark "specifications" in the article? If so, I don't know of any material that can withstand the stresses of the weights and speeds mentioned in it ... unless you are going for really low wing loading (think dirigible).

irishjohnnie | 5 years ago | on: Americans are getting more nervous about what they say in public

> Covid is an autoimmune disease. The Over active immune response is what is killing people.

The virus triggers an acute immune response. This is not the same as an autoimmune disease, it may be the opposite. Also, people with certain blood types that have better clotting ability seem to be at a disadvantage.

irishjohnnie | 6 years ago | on: Why should I have written ZeroMQ in C, not C++ (2012)

> But on 64-bit windows the default exception handling (SEH) uses a similar mechanism than Linux and should have comparable performance.

AFAIK SEH in Windows calls RaiseException() which in turn causes a user/kernel mode transition, probes for exception/termination handlers, and vectored exception handlers depending on the severity. It's been a while but I'm not sure the code GCC generates in Linux is quite like this.

irishjohnnie | 6 years ago | on: Why should I have written ZeroMQ in C, not C++ (2012)

> benchmarks have shown that exceptions are generally faster

The blog post you linked to says "Immediately we see that once the stack depth grows above a certain size (here 200/3 = 66), exceptions are always faster. This is not very interesting, because call stacks are usually not this deep (enterprise Java notwithstanding). For lower depths there is a lot of noise, especially for GCC ..." So ... not exactly "generally faster".

Also, the test is only for Linux. The same test on Windows/VC++ will probably run a lot slower ... again not "generally faster"

page 1