3
votes
2answers
116 views

Why does member y get set to 0 in the following code?

I can't make out why this happens. I'm using a bunch of really complicated structures, unions, unnamed versions of both, static variables, etc... but I'm sure this should work. After a day of ...
15
votes
2answers
197 views

Initializing circular data in C. Is this valid C code according to any standard?

I wanted to see if I could initialize a global variable to point to itself: #include <stdio.h> struct foo { struct foo *a, *b; } x = { &x, &x }; int main() { printf("&x = %p, ...
7
votes
2answers
7k views

Static pthreads mutex initialization

Using pthreads, how would one, in C, initialize a static array of mutexes? For a single static mutex, it seems I can use PTHREAD_MUTEX_INITIALIZER. But what about an static array of them? As, in for ...
2
votes
4answers
509 views

How to initialize a static variable in a multithreaded context?

I thought up a good use of the static keyword inside a function to be something like this: void threadSafeWrite(int *array, int writeIndex, int writeData){ static void *threadLock = ...