is there a known, working code to add elements to a shared, initialized c-style array (of objects) in multiple threads simultaneously without having to use lock on that resource? i mean, to a continuous memory block where elements are not linked by pointers.
i mean, algorithm, not libraries etc. i just want to fill an array with elements in, say, 20 threads without locks or having to specify array ranges for threads where to fill (much like lockfree linked lists).
im using slackware 13.37 64 bit, pthreads, intel c++ compiler, tcmalloc allocator.
update : thanks guys for your answers, you all have been helpful with your ideas; if i could, i would mark all your ideas as answers. however, im still struggling with my code. so ill put the code up later in another thread to see whats happening exactly with my code, so people could really focus.
