1
vote
6answers
75 views
Ensuring certain private functions can only be called from a locked state
Say I have a class A:
class A {
public:
A();
void fetch_data() { return 1; }
void write_x_data() {
// lock this instance of A
private_function1_which_assumes_l …
2
votes
0answers
47 views
Locking in Python/Django over NFS
I'm occasionally getting the following exception when running the code below:
Traceback (most recent call last):
File "/home/user/locktest.py", line 9, in <module>
loc …
0
votes
1answer
21 views
Locking a queue while re-ordering it in Coldfusion
Hi all, please consider the following:
I have a queue of objects represented
as an array.
I process them off the top of the
array (at position 1) before calling
arrayDeleteAt() …
3
votes
3answers
56 views
How are mutex and lock structures implemented?
I understand the concept of locks, mutex and other synchronization structures, but how are they implemented? Are they provided by the OS, or are these structures dependent on spec …
0
votes
2answers
35 views
mySQL - Apply a row level lock using mysqli
Using PHP's mysqli how do you apply a row level lock?
Row level locks stop anyone editing currently present rows that match your criteria right? but do they stop a user inserting …
1
vote
1answer
35 views
Lockfree standard collections and tutorial or articles.
Does someone know of a good resource for the implementation (meaning source code) of lock-free usual data types. I'm thinking of Lists, Queues and so on?
Locking implementations a …
1
vote
2answers
31 views
Am I right that InnoDb is better for frequent concurrent updates and inserts than MyISAM?
Hello,
We have a websites with hundreds of visitors every day and tens of thousands queries a day.
So, some tables in the database are updated very rarely, some tables are updated …
0
votes
4answers
95 views
Database Locking Problem
Hi All,
Pls. we've been getting A LOT of locks on a production database that's recently witnessed substantially increased traffic. We are using IdeaBlade for most of the data acce …
2
votes
4answers
78 views
How Do I Solve a Locking Issue in MySQL?
I suppose this issue applies to deadlocks, live-locks, or just lock wait timeouts.
I'm trying to figure out what query is causing a lock that is preventing another query from ex …
0
votes
2answers
65 views
Using lock with Threading.Timer
Hi,
I have a Windows Service application which uses a Threading.Timer and a TimerCallback to do some processing at particular intervals. I need to lock down this processing code t …
2
votes
1answer
148 views
C++ multithreading: explicit locks in domain model classes
Guys, I'm developing a multiplayer game application with C++ and currently in the process of choosing an appropriate multithreading architecture for it.
The core of the applicati …
1
vote
2answers
31 views
popen - locks or not thread safe?
I've seen a few implementations of popen()/pclose(). They all used a static list of pids, and no locking:
static int *pids;
static int fds;
if (!pids) {
if ((fds = getdtable …
1
vote
1answer
28 views
Replacing ReaderWriterLock with ReaderWriterLockSLim - troubles
Hi,
due to performance problems I have replaced RWL with RWLSlim but I am experiencing troubles caused by previously (with RWL) accepted statements.
As you can see, sometimes meth …
6
votes
4answers
251 views
Is this (Lock-Free) Queue Implementation Thread-Safe?
I am trying to create a lock-free queue implementation in Java, mainly for personal learning. The queue should be a general one, allowing any number of readers and/or writers concu …
0
votes
1answer
48 views
Message “current thread is in sleep,wait or join state” - locking?
Hi,
I have encountered (for me) very strange problem. In my app, when pressing start button, all threads are activated, when pressing stop button, all threads are aborted and all c …
