Synchronization refers to using controls to maintain a coherent representation, either a group of processes running the same program (process synchronization), or representations of data (data synchronization).

learn more… | top users | synonyms

59
votes
12answers
20k views

Avoid synchronized(this) in Java?

Whenever a question pops up on SO about Java synchronization, some people are very eager to point out that synchronized(this) should be avoided. Instead, they claim, a lock on a private reference is ...
57
votes
5answers
10k views

What are the differences between various threading synchronization options in C#?

Can someone explain the difference between: lock (someobject) {} Using Mutex Using Semaphore Using Monitor Using Other .Net synchronization classes I just can't figure it out. It seems to me the ...
34
votes
14answers
7k views

Are C++ Reads and Writes of an int atomic

I have two threads, one updating an int and one reading it. This value is a statistic where the order of the read and write is irrelevant. My question is, do I need to synchronize access to this ...
33
votes
4answers
8k views

How to Sync iPhone Core Data with web server, and then push to other devices?

I have been working on a method to sync core data stored in an iPhone application between multiple devices, such as an iPad or a Mac. There are not many (if any at all) sync frameworks for use with ...
33
votes
5answers
24k views

How to synchronize two Subversion repositories?

My company has a subsidiary with a slow Internet connection. Our developers there suffer to interact with our central Subversion server. Is it possible to configure a slave/mirror for them? They ...
29
votes
5answers
11k views

Are Java static initializers thread safe?

I'm using a static code block to initialize some controllers in a regsitry I have. My question is therefore, can I guarantee that this static code block will only absolutely be called once when the ...
28
votes
4answers
662 views

What can cause IllegalMonitorStateException from inside a synchronized block?

We hit an extremely surprising exception today. Inside of a synchronized block, we call wait() and it throws IllegalMonitorStateException. What can cause this? This is happening in well-tested open ...
28
votes
4answers
28k views

How does @synchronized lock/unlock in Objective-C?

Does @synchronized not use "lock" and "unlock" to achieve mutual exclusion? How does it do lock/unlock then? The output of the following program is only "Hello World". @interface MyLock: ...
28
votes
4answers
10k views

C# version of java's synchronized keyword?

Does c# have its own version of the java "synchronized" keyword? I.e. in java it can be specified either to a function, an object or a block of code, like so: public synchronized void ...
26
votes
3answers
21k views

Monitor vs Mutex in c# [closed]

Possible Duplicate: What are the differences between various threading synchronization options in C#? What is the difference between a Monitor and a Mutex in C#? When to use a Monitor and ...
22
votes
1answer
728 views

Re-using Backbone.js models on the server side with Node.js and Websockets

I've been working my way through: http://andyet.net/blog/2011/feb/15/re-using-backbonejs-models-on-the-server-with-node/ I have a few questions about sharing models server-side and a few questions ...
22
votes
7answers
37k views

How do synchronized static methods work in Java?

If I have a util class with static methods that will call hibernate functions to accomplish basic data access. I am wondering if making the method synchronized is the right approach to ensure ...
22
votes
12answers
2k views

How to synchronize development and production database

Do you know any applications to synchronize two databases - during development sometimes it's required to add one or two table rows or new table or column. Usually I write every sql statement in some ...
18
votes
4answers
5k views

Why is there no generic synchronized queue in .NET?

I noticed that you can call Queue.Synchronize to get a thread-safe queue object, but the same method isn't available on Queue<T>. Does anyone know why? Seems kind of weird.
17
votes
3answers
1k views

How is thread synchronization implemented, at the assembly language level?

While I'm familiar with concurrent programming concepts such as mutexes and semaphores, I have never understood how they are implemented at the assembly language level. I imagine there being a set of ...
17
votes
5answers
3k views

Multiplayer Game Synchronization

I've a server/client arcitecture implemented, where all state changes are sent to the function, validated and broadcasted to all clients connected. This works rather well, but the system does not ...
16
votes
2answers
270 views

How expensive is lock(…) when the lock isn't contended?

While looking into double-checked locking I've seen numerous recommendations to just skip the first check and immediately go for the lock and just check after taking it instead. This lead me to ...
16
votes
7answers
602 views

How does lock work exactly? C#

I see that for using thread unsafe objects we wrap the code with a lock like this - private static readonly Object obj = new Object(); lock(obj) { //thread unsafe code } So what happens when ...
16
votes
9answers
512 views

Game's score is based on a client-side countdown. How to bulletproof it?

I'm working on a game, which has score based on a JavaScript countdown: the faster you finish the level before the countdown reaches zero, the bigger your score is. How can I make sure it is not ...
15
votes
4answers
294 views

Synchronization primitives in the .NET Framework: which one is the good one?

I have a problem concerning the System.Threading Microsoft .NET namespace. In this namespace, many classes are defined in order to help me managing with threads. Well, I have a problem, but I do not ...
15
votes
7answers
1k views

Achieving Thread-Safety

Question How can I make sure my application is thread-safe? Are their any common practices, testing methods, things to avoid, things to look for? Background I'm currently developing a server ...
14
votes
7answers
2k views

Is changing a pointer considered an atomic action in C?

If I have a multi-threaded program that reads a cache-type memory by reference. Can I change this pointer by the main thread without risking any of the other threads reading unexpected values. As I ...
14
votes
6answers
2k views

In Java, do I need to declare my collection synchronized if it's read-only?

I fill a collection one single time when my J2EE webapp starts. Then, several thread may access it at same time but only to read it. I know using a synchronized collection is mandatory for parallels ...
14
votes
10answers
4k views

C++ Thread, shared data

I have an application where 2 threads are running... Is there any certanty that when I change a global variable from one thread, the other will notice this change? I don't have any syncronization or ...
13
votes
6answers
5k views

Mutex example / tutorial?

I've noticed that asking questions for the sake of creating a reference list etc. is encouraged in SO. This is one such question, so that anyone Googling for a mutex tutorial will find a good one ...
13
votes
3answers
230 views

Asserting order of synchronization in Java

In highly concurrent systems, it can be difficult to be confident that your usage of locks is correct. Specifically, deadlocks can result if locks are acquired in an order that was not expected while ...
13
votes
8answers
4k views

Is there a solution to automatically synchronize Emacs org-mode with one of the web based todo services?

Org-mode is amazing. I like its power and simplicity. However, sometimes I need access to my tasks in places where I don't have the necessary setup. Is there a way to synchronize my org agenda with ...
12
votes
8answers
744 views

Are lock-free algorithms really more performant than their lock-full counterparts?

Raymond Chen has been doing a huge series on lockfree algorithms. Beyond the simple cases of the InterlockedXxx functions, it seems like the prevailing pattern with all of these is that they implement ...
12
votes
5answers
6k views

using git on android

I have a desktop application using git for synchronization. I have also an android application which do the same as the desktop, but I don't know how to do the synchronization part on it. I haven't ...
12
votes
5answers
1k views

Keeping testing and production server environments clean, in sync, and consistent

It seems that the company that I work for is always struggling with our customers’ server environments. Specifically, we almost always encounter problems with testing servers and production servers, ...
11
votes
2answers
175 views

Is this a bug in Scala 2.9.1 lazy implementation or just an artifact of decompilation

I am considering using Scala on a pretty computationally intensive program. Profiling the C++ version of our code reveals that we could benefit significantly from Lazy evaluation. I have tried it ...
11
votes
2answers
735 views

Strategies for Synchronizing Data Between a Rails App and iPhone App

I've written many iPhone Applications that have pulled data from web services and I've worked on synchronizing data between an iPhone App and a Web Application, but I've always felt that there is ...
11
votes
5answers
652 views

synchronizing audio over a network

I'm in startup of designing a client/server audio system which can stream audio arbitrarily over a network. One central server pumps out an audio stream and x number of clients receives the audio data ...
11
votes
8answers
426 views

java threads synchronization

In the class below, is method getIt() thread safe and why? public class X { private long myVar; public void setIt(long var){ myVar = var; } public long getIt() { return ...
11
votes
4answers
1k views

How to run two functions simultaneously

I am running test but I want to run 2 functions at the same time. I have a camera and I am telling it to move via suds, I am then logging into the camera via SSH to check the speed the camera is set ...
11
votes
3answers
11k views

pthreads mutex vs semaphore

What is the difference between semaphores and mutex provided by pthread library ?
11
votes
5answers
20k views

Java synchronized block vs. Collections.synchronizedMap

Is the following code set up to correctly synchronize the calls on synchronizedMap? public class MyClass { private static Map<String, List<String>> synchronizedMap = ...
11
votes
24answers
928 views

What strategy do you use to sync your code when working from home

At my work I currently have my development environment inside a Virtual Machine. When I need to do work from home I copy my VM and any databases I need onto a laptop drive sized external USB drive. ...
11
votes
4answers
5k views

Why does synchronized notifyAll result in a IllegalMonitorStateException?

Why does this test program result in a java.lang.IllegalMonitorStateException? public class test { static Integer foo = new Integer(1); public static void main(String[] args) { ...
11
votes
11answers
906 views

Double checked locking Article

I was reading this article about "Double-Checked locking" and out of the main topic of the article I was wondering why at some point of the article the author uses the next Idiom: Listing 7. ...
10
votes
3answers
155 views

Does writing the same value to the same memory location cause a data race?

Consider the following code that writes the same value to the same memory location from multiple threads: void f(int* buf, int n, int* p) { for(int i = 0; i < n; i++) buf[i] = i; ...
10
votes
4answers
625 views

Two-way folder sync with encryption to secure my Dropbox data

i'd like to write a little .NET script/tool which does at least mostly the same like SecretSync or BoxCryptor, but without storing the encryption key on a company's web servers. First it sounds very ...
10
votes
4answers
209 views

C# enforcing order of statement execution

My question is about order of execution guarantees in C# (and presumably .Net in general). I give Java examples I know something about to compare with. For Java (from "Java Concurrency in Practice") ...
10
votes
6answers
327 views

Small footprint clock synchronization without NTP

I'm looking for a simple clock synchronization protocol that would be easy to implement with small footprint and that would work also in the absence of internet connection, so that it could be used ...
10
votes
3answers
3k views

Core Data cloud sync - need help with logic

I'm in the middle of brainstorming a cloud sync solution for a Core Data app that I am currently developing. I'm planning to open source the code for this once its done, for anyone to use with their ...
10
votes
4answers
598 views

Open source framework à la Microsoft Sync Framework suggestions?

We are implementing a warehouse management system atop an open source stack (Java, web services & friends). In this system, we want to integrate many mobile devices which should also be capable of ...
10
votes
5answers
7k views

Own sync adapter for Android?

The press release of Android 2.0 states that the new release supports sync adapters so that emails and calendars cannot only be synced with gmail and exchange. However, there is no information ...
10
votes
5answers
5k views

Lock free stack and queue in C#

Does anyone know if there are any lock-free container libraries available for .NET ? Preferably something that is proven to work and faster than the Synchronized wrappers we have in .NET. I have ...
10
votes
7answers
1k views

What's the best way to sync large amounts of data around the world?

I have a great deal of data to keep synchronized over 4 or 5 sites around the world, around half a terabyte at each site. This changes (either adds or changes) by around 1.4 Gigabytes per day, and the ...
9
votes
2answers
159 views

Implementation of MVar in C?

Is there any known implementation of Haskell MVar in C? There is an example on how to implement it in C++. But, I will like to implement it in C - let us say only MVar CInt equivalent in C for now. ...

1 2 3 4 5 43