The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
23 views

How would you implement a save thread cooperation with signals in ruby 2.0?

I just began to work with threads. I know the theory and understand the main aspects of it, but I've got only a little practice on this topic. I am looking for a good solution (or pattern, if ...
0
votes
1answer
35 views

Process synchronization in Python

I try to synchronize multiple processes by using semaphores. I thought instead of creating a function for each process, it might be possible in a more generic way, with a single function and some ...
2
votes
2answers
79 views

Multi Threading Using Boost C++ - Synchronisation Issue

I would like to do multithreading where Thread ONE passes data to 4-5 Worker Threads which process the data and ones ALL Worker Threads are finished I would like to continue. I'm using boost to ...
0
votes
0answers
23 views

best way to synchronise a mail app with the server

I am writing a mail application that synchronises all the mails in a user's gmail account. I have implemented it using a function that make a request to the webservice for the mails, the service ...
0
votes
2answers
163 views

How to switch between two thread back and forth

I have two methods in two different classes, like this public class ClassX implements Runnable { public void methodAandB() { for(int i=0;i<10;i++) { ...
0
votes
1answer
84 views

Directsound stream synchronisation

I have a question regarding the synchronization of 2 Directsound streams. To record and play sound I currently use Portaudio to open 2 Directsound streams. There are 2 callback functions which are ...
1
vote
1answer
93 views

Delphi2006 - Is there TList with TMultiReadExclusiveWriteSynchronizer?

I have external application that is multithreaded and this app is using my custom dll to do some things from that threads. In this dll I have 2 functions that read from and write some data to TList. I ...
0
votes
1answer
88 views

Need advice/suggestion on pthread synchronization (combine the use of condition variable and barrier)

I have the following scenario: I split one task into several stages, there are several threads in each stage to do the actual work, and the threads of in later stage need to wait for all threads in ...
0
votes
1answer
39 views

Java Graphics synchronisation issues drawing dynamic data

I have a program where I want to draw data that is constantly being updated (it is microhpone-line-data incidentally). The data is an 8000-length array of doubles, I don't really care about 'losing' ...
0
votes
0answers
33 views

C++ Thread safe calls to IE controls

I have a question about thread-safe calls. My dll is working within application that uses Internet Explorer controls to display the data. As I read IE controls aren't thread-safe. And there is a ...
0
votes
0answers
129 views

microsoft sync framework and phonegap

In need of sync data from my mobile app to my SQL Server,? any piece of code or advise will help Basically , This is what I need: Download database records from SQL database server (using microsoft ...
1
vote
2answers
69 views

Thread looping and waiting for messages from buffer - Best solution

I have specific problem, I want to have one separate work thread , which in some periods controls , if the buffer isn't empty. If it isn't, thread send data from buffer (ConcurrentQueue) ... Is there ...
1
vote
2answers
161 views

Synchronising GEF editor with EMF model with two EMF adapters

I'm having trouble synchronising my GEF editor with the EMF-based model. I think this is due to the fact that the model-internal EMF Adapter, or rather the methods it calls, aren't finished before the ...
0
votes
0answers
67 views

Lost of synchronisation between Div and Scrollbar with jQuery horizontalScroll()

I've a problem with the horizontallScroll() of jQuery. My code is there. I can scroll with the mouse without any problem. But, when you complete the first input and you use your Tab key to focus on ...
2
votes
5answers
138 views

java locking on an object instance … is this safe?

My question is regarding locking on an object instance in Java. I've got the following method that can be called by multiple threads at the same time. I've chosen to lock on an object instance since ...
0
votes
1answer
52 views

Entities with change log and database synchronisation

I'm looking for a solution in the light of java, jpa2, spring, hibernate database applications that allows me to basically do something like an SCM for entities. I have a database driven java ...
4
votes
3answers
102 views

Many calls to static method in single thread

please look at this class, static method calls and output. public class OneThreadManyStaticCalls { public static final Calculator calculator = new Calculator(); public static void main(String[] ...
2
votes
1answer
134 views

Ternary operator and Sequence Points in C

I've an expression of the form shown below :- while (count) { ... ... index = ((count == 20)? 0 : index++); ... ... } Now Ternary operators are sequence points in C but I believe that the ...
0
votes
0answers
314 views

Data synchronization using SQL Server 2008 R2 Express edition

My need is to synchronize data between two locations (Head office and Branch). Head office is the place where Master data will be fed. Branch office's master data should get updated automatically. ...
0
votes
1answer
203 views

frequently update QLabel with image data from server

i am writing a program, that should show an image in QLabel in a QWidget. The images are sent from the server. First, I have a thread that is responsible for the connection and receiving data from the ...
2
votes
1answer
226 views

Synchronized access to database?

I am writing a little shop administration software for my uncles fishing shop. It supports multiple clients which access a single database in a local network. I am currently searching for a way to ...
2
votes
2answers
330 views

Backup and Synchronisation between Mac / PC / Server

Today i am searching for a backup and synchronisation-tool between PCs and Macs. The main problem is to find a tool which runs on Mac AND PC. I want to sync (and backup them onto a local server) ...
1
vote
1answer
191 views

video/sound/MIDI player time

I've created a MIDI player, but the problem occurs also in video/sound players. I use usleep/Sleep functions between sending MIDI events. This works good when CPU is not very busy, but music slows ...
3
votes
1answer
1k views

Matlab, Simulink, Making connection between multiple simulink models via Lan

There is a Simulink model composed of some subsystems, It is supposed to run each subsystem in a computer and all computers are connected to a LAN network. There are interconnections between these ...
0
votes
1answer
708 views

Obtaining Sync Status Information using SyncStatusObserver or by other means?

Being specific, I have a 'Droid HTC incredible, Android version 2.2, Baseband 2.15.00.07.28, kernel 2.6.32.17-g9a2fe16, Build 3.26.605.1, Software Number 3.26.605.1 I've got Eclipse and the Android ...
1
vote
1answer
668 views

How to synchronise two Sql Compact edition databases via WCF (n-tier)

I have a situation that requires two SQL Compact edition databases to synchronise with each other using Microsoft Sync Framework in a C# 4 Winforms app, but I am struggling to find a way to get this ...
1
vote
1answer
259 views

Bi-directional database synchronization

Anyone can give some advice on C# frameworks/opensource projects for bi-drectional database synchronisation? I have an application that will be used by multiple users. Normally, the user will ...
0
votes
2answers
548 views

Unique identifier as primary key when syncing databases

I have spent the best part of a day researching and testing different methods of syncing a SQL server database with CoreData on the Mac. I have tested both INT's and GUID's (sequential GUID's also) as ...
3
votes
1answer
130 views

MIDI or OSC controls between browsers

I'm looking into the possibility of simple music snychronisation and control (MIDI / OSC) between mobile browsers, XMPP would seem promising, but I've found no suitable extensions. Have you any useful ...
5
votes
3answers
223 views

PHP Session Synchronisation

I am developing a WebApp in PHP. The user will be able to click a button and the PHP code will end up calling a system exec. Since the WebApp will be using AJAX, there is the possibility that the user ...
1
vote
1answer
909 views

Camera Sychronization OpenCV

Hallo, i have stereo cameras system. In my programm I catch the images from each camera in two threads. (one thread per camera). After I receive the images from each camera, i want to process them ...
1
vote
3answers
250 views

synchronisation primitives for increment

i am a begineer studying threads, i have a homework to solve a mutual exclusion problem with os161, to counts from 0 to 10000 by starting several threads that increment a common counter. i have no ...
2
votes
2answers
203 views

Python thread synchronisation

I have 3 tasks : t1, t2 and t3. I want to run t1 and t2 in two parallels threads. And I want to wait for the end of t1 and t2 execution before running t3. t1 =========> | t2 ...
1
vote
1answer
241 views

C# Synchronisation with screen updates

I have the following Problem: My application does a screen-update and should make a screenshot of the new view after that. The code is as follows: public ViewModelBase Screen { get { ...
4
votes
2answers
324 views

android emulator time synchronization

Is there some way to synchronise emulator time and system time with milliseconds accuracy? So the call System.currentTimeMillis() would return the same time as call gettimeofday() in C?
8
votes
2answers
1k views

How to synchronize Git Repositories across 2 Servers

I'm looking for a way to automatically synchronize Git repositories across (2) servers so they are interchangeable from a third point. Situation is as follows: We heavily use git for all our ...
3
votes
3answers
2k views

Best way to synchronize asynchronous task

My Problem: I've got 802.15.4 Wireless network connected to a serial port (using a wrapper). I can send packages into the network and listen for incoming packages. As you can imagine this is highly ...
1
vote
1answer
937 views

ZSync tutorial - Syncing CoreData data between devices

I am interested in syncing CoreData data amongst several apps running on iPhone, iPad and MacOSX. I found ZSync project from Mr Zarra but did not find any related tutorial. I contacted Mr Zarra who is ...
3
votes
1answer
241 views

Occasionally online app data synchronisation

I am writing an application which consists of a master "server" database (most probably sqlite) and a client side replica with client specific records (again, Sqlite). The clients may only be online ...
2
votes
1answer
225 views

Fastest synchronisation

I have the following scenario: The program has a reader and a writer thread to a socket which is an external application. The reader and writer need to work in coordinated cycles. The writer sends a ...
2
votes
8answers
1k views

C++ multithreading problem - is mutex the only way?

I have a counter variable which will be accessed by multiple threads which will increment/decrement it. It should not be updated by multiple threads at the same time. I know that you can create a ...