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).
4
votes
2answers
133 views
Simple thread pool in C++
I wrote a simple thread pool, which works pretty well. I would like to see your review of it.
One important feature that I needed in the pool is the ability to wait until all the tasks that I sent to ...
5
votes
1answer
45 views
Optimize a synchronization with remote web service
I am writing a method to synchronize the local Core Data entities with a remote web service (in this case Parse.com).
To update changed or created objects, I fetch all where the "updatedAt" date ...
1
vote
2answers
262 views
Static classes, singleton and thread-safety
I have a classes for work with a web service (Windows Phone 8 app). I will briefly describe what doing each. My main question is the thread-safety of the solutions. I think there will be problems ...
1
vote
1answer
99 views
Importing Markdown Files - Code Efficiency?
I'm building a rails app that, among other things, imports text markdown files as blog posts. The idea is that the truth is in the markdown files, so any time those are edited, created, or deleted, ...
1
vote
0answers
112 views
Simple multithreading and synchronization problems in MFC
I use a worker thread for some data processing in my MFC project. In the thread-controlling function, it needs to use some parameters (declared as member variables) to the data-processing. I use a ...
3
votes
0answers
372 views
Python files sync
I'm trying to do a one-way directory sync. Given a list of existing files in a dir, I'd like to make the files in the dir equal a new list of files. There will be subdirs under the dir. Because ...
2
votes
2answers
306 views
Implementing semaphore - is this right?
I am learning to use semaphores and below is a small scenario which I've tried to implement. Its behaving weird in a way. After sem_wait() gets unblocked first time, its not getting blocked again and ...
1
vote
4answers
199 views
Simple multi-threading class: Does anybody spot potential lock-based concurrency issues?
Trying to write a multi-threaded utility that logs some audit trails to the DB every 30 minutes, or whenever my storage data structure (a list in this case) exceeds a certain limit. The code works ...
3
votes
2answers
89 views
Is this a scenario to use volatile instead of synchronized?
I want to know if using volatile in this scenario will give a better performance than using synchronization. Specifically for the paused and running instance variable in the SimulationManager class.
...
1
vote
1answer
61 views
Timing/Synchronization issues with interrupt-reliant code
I've started to program a state machine on a PIC18F2550 microcontroller. In each state of my machine, there is a designated block of code that runs for a specific amount of real time, such as 20 or 30 ...
1
vote
1answer
588 views
Producer/Consumer with some limitations
The code realizes producer/consumer problem with multiple producers and consumers. Have this code any potential deadlock or races?
//RandomDataProvider.cs
namespace MyNamespace.Core
{
using ...
3
votes
2answers
120 views
Invoking a callback on a pool of threads
This class acts like a synchronization context except the work could be done on any one of the available threads.
I've done quite a bit testing on my own, but I'm generally concerned about potential ...
3
votes
1answer
242 views
Interview example [closed]
Recently I participated in an interview for a Russian company in Moskow and could not answer some of the simple questions. One of them I would like to ask here.
List all problems which you can see in ...
1
vote
1answer
168 views
Synchronization in EJBs
Inspired by Is this synchronized correctly? I want to ask if this code is good.
I have an Java Enterprise application running in Glassfish 2.1 and a Java SE client that communicates with the server ...
7
votes
4answers
384 views
Is this synchronized correctly?
I've never really done anything with concurrency, so I'm not sure if this is done correctly.
Basically I have a Class that handles all messages from the server and decides what to do them. It uses a ...
2
votes
1answer
1k views
Boost Threads - Producer Consumer threads with synchronization - Review
I have below code for multi threaded consumer and single producer. Kindly review it ro concurrency correctness.
#include <iostream>
#include <queue>
#include "boost\thread.hpp"
#include ...
3
votes
4answers
679 views
Java Non Reentrant Lock Implementation
I have implemented a Non Reentrant Lock. I want to know if this has any mistakes, race conditions etc. I am aware of the fact that existing libraries have to be used (instead of writing our own), but ...
6
votes
0answers
135 views
Concurrency limit map in Go
Please someone who knows locks, mutexes, and Go, review the following code.
Task: per host concurrency limits for web crawler (map[string]Semaphore).
I considered chan struct{} (chan bool) approach, ...
3
votes
4answers
198 views
Configurable synchronization approach in Java
I am interested in the community opinion about the following approach for the synchronization.
Generally it is based on the idea to have a configurable way to apply locking on some logic parts.
Any ...
0
votes
1answer
137 views
Usage of Conditions Variables with Pthreads
This is just a program to show the use of condition variable when two threads are involved. One thread wants a non zero value of count, and other thread is responsible for signaling it when the count ...
2
votes
1answer
246 views
How improve a get/set method of a webservice using EclipseLink and database entities?
I am wondering if this is a correct and a good way to write the implementation of two web service methods (get/set method).
The setPerson method can be called from different threads from a pool so I ...
3
votes
1answer
514 views
RealTime Collaborative Editor: A CodeMirror extension for MobWrite
I wrote up the following script for the realtime-synchronization service, MobWrite to be used with the browser-based editor, CodeMirror:
// Based on MobWrite's code for TextBoxes
/*Instructions for ...
5
votes
2answers
2k views
thread-safe stl map accessor
So after learning that stl map containers are not inherently atomic and therefore not thread-safe (check out this related stackoverflow question and usage example), I decided to create code that would ...
5
votes
3answers
3k views
Java blocking queue
public class BQueue<T> {
private Queue<T> q = new LinkedList<T>();
private int limit;
public BQueue(int limit) {
this.limit = limit;
}
public ...
2
votes
1answer
363 views
What do you think about resource locker in Qt?
The idea is to lock resource, in c# or java way un Qt with code
lock(obj){/*process with locked obj*/}
No I see, the problem with deleting obj under lock.
resourcelocker.h
#ifndef RESOURCELOCKER_H
...
1
vote
0answers
1k views
Gmail Contacts API Connection Review
I created this class that connects to gMail contacts, and enables you to add/edit/delete the contact.
Curious to see what others think of my code... if you see any areas for improvement, that would ...
3
votes
2answers
812 views
Best practice for synchronization of an ODBC connection?
Since I'm venturing more and more into the Multi-Threaded lands, I now need to think about how to protect my precious OdbcConnection from breaking at random times.
The Project specifications:
...
5
votes
1answer
394 views
Is this waiting code with timeout ok?
public boolean connectedOnGameServer = false;
public final Object conGameServerMonitor = new Object();
public void connectedToGameServer() {
synchronized (conGameServerMonitor) {
...
3
votes
2answers
446 views
Making sure all elements are processed in a JQuery call
I have a piece code similar to below:
But I keep having this nagging feeling that there has to be an easier way!
Any ideas?
var synch = false
var indexArray = new Array();
var rowCount = ...
13
votes
3answers
9k views
Correct use of Monitor.Wait, Monitor.Pulse and timeout
I have the following code that I use to determine if connection has been made to a communications device.
I am unsure if my use of Monitor.Wait and Monitor.Pulse is correct. It seems to work alright,
...