Categories
- C++ (2)
- German (3)
- HowTo (4)
- Link (1)
- Microsoft (4)
- Microsoft Student Partners (2)
- Parallel Programming (1)
- Personal (10)
- Productivity (4)
- QuickTip (6)
- Rant (8)
- Thesis (2)
- Uncategorized (18)
because.
Today I have learned that having a global variable in some C89 code which is not declared as static might be problematic if said code is later linked together with a Fortran program which includes a function with the exact same name es the mentioned variable. Somehow the program ended up at the location of [...]
During work on my thesis the question popped up how signals generated by the SIGPROF timer were handled in multithreaded code. Signal handlers are process specific to it could have been that one random thread handled the sent signal. As I could not a find a suitable explanation in the intertubes I performed a small [...]