Tagged Questions
1
vote
2answers
110 views
Can't compile code with semaphore under Solaris?
I have written some code which compiles fine under linux but on Solaris I am given some compiling errors. I use gcc test_compile.c -o tes -pthreads to compile.
#include <semaphore.h>
int ...
0
votes
7answers
687 views
Strange Eclipse C++ #define behaviour (resolved)
(A case of over relying on an IDE)
I have some legacy C code that I compile as C++ for the purpose of Unit testing. The C source is C++ aware in that it conditionally defines based on environment.
...