Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
186 views

Can a correct fail-safe process-shared barrier be implemented on Linux?

In a past question, I asked about implementing pthread barriers without destruction races: How can barriers be destroyable as soon as pthread_barrier_wait returns? and received from Michael Burr ...
8
votes
2answers
276 views

How can barriers be destroyable as soon as pthread_barrier_wait returns?

This question is based on: When is it safe to destroy a pthread barrier? and the recent glibc bug report: http://sourceware.org/bugzilla/show_bug.cgi?id=12674 I'm not sure about the semaphores ...
6
votes
2answers
451 views

memory barrier and atomic_t on linux

Recently, I am reading some Linux kernel space codes, I see this uint64_t used; uint64_t blocked; used = atomic64_read(&g_variable->used); //#1 barrier(); ...
5
votes
3answers
207 views

How to implement Barrier class from .NET 4 functionality in .NET 3.5 (C#)

For some reasons I have to stick to .NET 3.5 and I need a functionality of Barrier class from .NET 4. I have a bunch of threads that do some work and I want them to wait for each other until all are ...
5
votes
2answers
275 views

Do spin locks always require a memory barrier? Is spinning on a memory barrier expensive?

I wrote some lock-free code that works fine with local reads, under most conditions. Does local spinning on a memory read necessarily imply I have to ALWAYS insert a memory barrier before the ...
4
votes
1answer
98 views

Does immutable object need to be accessed across memory barrier in C#?

When an immutable object is new'ed up in one thread, and shared in second thread (say as a field of shared object), shouldn't second thread synchronize? Thread1: ========= x = new SomeObject() ...
2
votes
1answer
71 views

how to handle barriers with threads quitting

Pseudo code: void * thread_start(void *arg) { while (1) { /* for each column. Only run columns the thread_num is assigned to */ column_count = thread_num; for ...
2
votes
1answer
118 views

MPI_Barrier not working inside a loop

I have running some tests on the MPI functions to understand how it works and have got a weird result with the MPI_Barrier: it does what everyone would expect if I use it in code like int main(int ...
2
votes
1answer
277 views

Reusable Barrier Algorithm

I'm looking into the Reusable Barrier algorithm from the book "The Little Book Of Semaphores", available here http://greenteapress.com/semaphores/downey08semaphores.pdf The puzzle is on page 31 ...
2
votes
3answers
552 views

Test MPI_Barrier C++

Dear all, How can I be sure that MPI_Barrier act correctly? What's the method of test for that? Thank you
2
votes
2answers
241 views

What would be a realworld example of use of a barrier in a multithreaded application?

JDK's concurrency package, Boost's thread library, Perl's Thread library (not in Python though) all implement barrier, I haven't come across a need for using a barrier, so wondering what would a ...
1
vote
3answers
81 views

Race condition with MPI

I am trying to implement Tournament barrier using MPI. Here, is the code I have written. I am writing only the arrival phase and wake up phase //Arrival phase while(1) { ...
1
vote
1answer
41 views

What are some of the barriers client-server developers face to understand Web applications/development? [closed]

Would you guys mind to shed some light about what are the difficulties that a client-server programmer faces (has to overcome) to be able to understand (and be able to move to) web application ...
1
vote
1answer
194 views

about pthread_barrier_wait

I'm using pthread_barrier_wait to synchronize threads, but in my program there is a possibility that one or more of the threads expire while others are waiting for them to reach pthread_barrier_wait. ...
1
vote
1answer
199 views

inline svg - how to apply browser default styles to xhtml in foreignObject?

i have an inline svg with foreignObject elements which contain xhtml fragments. however, the xhtml content is improperly styled due to crosstalk from styles set through js in the svg and its parent ...
1
vote
4answers
173 views

Barriers for thread syncing

I'm creating n threads & then starting then execution after a barrier breakdown. In global data space: int bkdown = 0; In main(): pthread_barrier_init(&bar,NULL,n); for(i=0;i<n;i++) { ...
0
votes
2answers
61 views

Synchronize threads for pthread_cond_broadcast call

I have a simple application with a "manager" thread that spawns ten simple "worker" threads. I want all of the "worker" threads to block on the same condition variable (ie: condvar), and I want to ...
0
votes
1answer
442 views

How to use pthreads barrier

Hi Sorry for posting a big dump of code but I'm very new at C code, Basically I'm doing an assignment for college and and I have to implement a "pthread_barrier", now I understand the concept of the ...
0
votes
1answer
283 views

Implementing an N process barrier using semaphores

I'm currently training for an OS exam with previous iterations and I came across this: Implement a "N Process Barrier", that is, making sure that each process out of a group of them waits, at ...
0
votes
1answer
224 views

MPI_BARRIER not working

Why is here the barrier not working? If I use it, the program gets blocked, otherwise I get the output in a weird order: Number of worker tasks = 4 sending 1-th element q=0.011000 to task 1 ...
0
votes
2answers
388 views

Barrier implementation for inter process in shared memory

I am looking for an inter-processes barrier implementation. Processes are in shared memory (ie. on the same ndoe). Processes are MPI ones. I do not want to use the MPI_Barrier function, because the ...
0
votes
1answer
428 views

Pthread Barrier vs. Loop Join

So my question in C is: what is basically the differences (maybe pros and cons) of using a pthread barrier (init and wait..etc) compared to using the pthread Join in a loop. So say I created 10 ...
0
votes
3answers
1k views

MPI Barrier C++

Dear all, I want to use MPI (MPICH2) on windows. I write this command: MPI_Barrier(MPI_COMM_WORLD); And I expect it blocks all Processors until all group members have called it. But it is not ...
-1
votes
2answers
78 views

c# barrier and exception handeling

I have created simple c# example which uses barriers and I have thrown an exception inside one of functions and I'm getting unexpected result phase 1 of DoWork1 phase 2 of DoWork2 phase 3 of DoWork3 ...