Tagged Questions
The locks tag has no wiki summary.
7
votes
2answers
479 views
InnoDB SELECT … FOR UPDATE statement locking all rows in a table
MySQL Server version 5.1.41 with InnoDB plugin enabled. I have the following three tables for invoices: invoices, invoice_components and invoice_expenses. Table invoices has invoice_id primary key. ...
4
votes
3answers
82 views
comparing databases and their locks
I have heavy transaction stuff going on and would like to gain information about how locks are implemented in current databases. Working on zero budget my choise is limited to mysql 5.5 and postgres ...
3
votes
1answer
183 views
MySQL InnoDB locks on joined rows
Does "SELECT ... FOR UPDATE" lock joined rows in MySQL?
If so, is it possible to disable this behaviour?
There is nothing about this in the documentation. I've seen that Oracle supports "SELECT ...
3
votes
1answer
575 views
Why isn't !locks working for me?
I'm using windbg (the latest available from the MSDN download page).
I'm trying to debug a deadlock in my app, and !locks would be very useful. However, it's not working:
0:023> !locks NTSDEXTS: ...
2
votes
0answers
35 views
Why Sqlcode 100 does not come with exception [migrated]
I have following query in a PL\SQL procedure on Oracle 10.2:
This is the code
LOOP
BEGIN
SELECT a.poid_id0 into v_acc_account_poidid0 FROM account_t a
WHERE a.poid_id0=i_acct_id0 FOR UPDATE OF ...
2
votes
2answers
54 views
How do I get the right locks for this SQL?
My database is SQL Server 2005/8. In a booking system we have a limit of 24 bookings on an event. This code in a stored procedure checks:
- that the current user (@UserId) is not already booked on ...
2
votes
4answers
88 views
Pausing two Python threads while a third one does stuff (with locks?)
I'm new to concurrent programming.
I'd like to execute three tasks repeatedly. The first two should run all the time, the third should run every hour or so. The first two tasks can run in parallel, ...
2
votes
1answer
105 views
SVN Server on NFS3 “Database is locked”
Despite a lots of topics about this error, I'm still having trouble with setting up av SVN Server. Server is running on Scientific Linux 6 and repositories are supposed to be stored via NFS3 on a ...
2
votes
2answers
310 views
Android - sqlite content providers and multithreading
I'm a little confused about content providers.
If I have multiple activities in my application do they each get their own instance of the content provider? it's just essentially a class/interface?
In ...
2
votes
4answers
252 views
Threads trying to acquire pthread_mutex_lock(&mutex) What happens if they don't get the lock?
C Programming:
What happens when a thread tries to acquire a mutex lock, and fails to get it?
Does it go to sleep?
Will the thread be woken up when pthread_mutex_unlock(&mutex); is called?
...
2
votes
3answers
160 views
How to avoid Nested synchronization and the resulting deadlock
I need to lock two objects in a functionality and the current code looke like this;
Object obj1 = ...//get from somewhere
Object obj2 = ...//get from somewhere
synchronized(obj1){
...//blah
...
2
votes
3answers
182 views
C# Multithreading
Okay. I want to have two threads running. Current code:
public void foo()
{
lock(this)
{
while (stopThreads == false)
{
...
1
vote
2answers
57 views
How to check is any thread waiting on condition variable?
I have Condition variable named cond.
Is there any method which could give me true or false if there is any thread awaiting on cond?
I need something like:
Boolean cond.isAwaitingSetEmpty()
...
1
vote
1answer
81 views
C# How to use Interlocked.CompareExchange
My goal is the following:
There is a certain range of integers, and I have to test every integer in that range for something random. I want to use multiple threads for this, and divide the work ...
1
vote
1answer
78 views
Run database updates on live Magento store?
I have been asking a few questions recently to work out how to change our Magento store's product codes.
The answer was to run this command within phpmyadmin:
UPDATE `catalog_product_entity` SET ...
1
vote
1answer
115 views
Are Locks AutoCloseable?
Are Locks AutoCloseable? That is, instead of:
Lock someLock = new ReentrantLock();
someLock.lock();
try
{
// ...
}
finally
{
someLock.unlock();
}
can I say:
try (Lock someLock = new ...
1
vote
2answers
53 views
Should I use a custom 'locks' table with MySQL?
I'm developing a relatively simple, custom web app with a MySQL MyISAM database on the back end. Somehow, I want to avoid the classic concurrency overwrite problem, e.g. that user A overwrites user ...
1
vote
1answer
39 views
Find out in what position my thread landed in a ReentrantLock
I want to find out in which position of the LockinQueue of a ReentrantLock my Thread landed in? is there some magic lock which returns the position in the queue when calling lock.lock()? Or does ...
1
vote
1answer
305 views
Logging lock acquire and release calls in multi-threaded application
I am trying to debug a multi-threaded Python application that uses various locks.
Rather than place log.debug(...) statements all over the shot to track where and when the locks are acquired and ...
1
vote
2answers
161 views
method that adds elements to a DbSet from multiple threads
static Object LockEx=new Object();
public void SaveMyData(IEnumerable<MyData> list)
{
lock (LockEx)
{
using (PersistencyContext db = new PersistencyContext())
...
1
vote
1answer
314 views
WaitForSingleObject is not locking, Still allowing other threads to change value in C++
I'm trying to use WaitForSingleObject(fork[leftFork], Infinite); to lock a variable using multiple threads but it doesn't seem to lock anything
I set the Handle fork[5] and then use the code below ...
1
vote
3answers
170 views
When is a good idea to use a spinlock?
It seems that spinlocks aren't that great as they waste CPU cycles when the are waiting (blocking).
If the thread just goes to sleep while waiting for a signal to wakeup, then CPU cycles aren't lost ...
1
vote
1answer
180 views
Composable Locks using LINQ. Can anyone see any problem with this?
I was playing around with LINQ and I came up with the following idea for composing locks taking advantage of C# Monadic syntax. It seems too simple, so I thought let me post it on StackOverflow and ...
1
vote
1answer
66 views
How can I read data in an uncommitted delete?
A MS SQL 2008 procedure deletes then inserts data. I need to be able to read data in another connection right up until the insert happens, i.e., after the delete. How can I accomplish this?
1
vote
2answers
111 views
Adding locks to the class by composition
I'm writing thread-safe class in C++. All of its public methods use locks (non-recursive spin locks). Private methods are lock-free. So, everything should be OK: user calls public method, it locks ...
1
vote
3answers
258 views
How OS Loaderlock works
I'm trying to understand in a bit more detail how a OS loaderlock is used in relation to the loading and unloading of DLL's in Windows.
I understand that every loaded DLL get notified when a new ...
1
vote
0answers
191 views
Javascript and rendering pauses and stays paused on scroll in the android browser
I've found some wierd behaviour related to scrolling and rendering and javascript.
How to make it happen:
On any webpage that is long enough to scroll on. Start to scroll pretty fast (fling the ...
0
votes
2answers
41 views
How i can create a wrapper over ReentrantReadWriteLock ReadLock and WriteLock
I have a ReentrantReadWriteLock. The ReentrantReadWriteLock contains ReadLock and WriteLock as subclasses.
I want to extend this ReadLock and WriteLock by my custom classes as
DummyReadLock and ...
0
votes
4answers
72 views
Should I synchronize listener notifications, or not?
I am always very hesitant to bring my locks in the open, to make them public. I always try to keep the locks restricted to my implementation. Not doing that, is a recipe for deadlocks, I believe.
I ...
0
votes
3answers
90 views
Do I need to use NSLock?
I have an iOS class which does some calculations in a separate thread while the main thread shows an alert that allows the user to cancel the calculation. The calculation thread uses several instance ...
0
votes
1answer
74 views
file locking C programming
Hello every one I am making a program using filing I know how to read an write in a file .But please can any one help me about the file read write locks in C programming.Like how to insert lock and ...
0
votes
1answer
45 views
readers-write lock in vxWorks
How to implement readers-writer lock in vxWorks?
Readers-Writer lock:
http://en.wikipedia.org/wiki/Readers-writer_lock
0
votes
1answer
39 views
Database lock - simple question
I have the following simple scenario.
Three computers will be updating a cinema booking table. Should I lock the whole table or lock the rows corresponding to seats that will be updates? Can I ...
0
votes
1answer
105 views
How to do a “try_lock” with an “upgrade_to_unique_lock”
I want to perform an upgrade_to_unique_lock on an upgrade_lock without blocking but a cursory look at the Boost source code (v1.46.1) shows that this is impossible? Is my approach wrong?
I want to ...
0
votes
1answer
51 views
Why Row Locks Exist on An Completely Empty Partition in SQL Server?
I made a partitioned table with range left func. I then insert some rows into just one partition. Result:
select partition_id, partition_number, rows from sys.partitions where object_id = ...
0
votes
1answer
105 views
Table Lock History
Is there a way to know the lock history for a table?
In example, a list with all the locks that occured on a table between 8:00 and 9:00.
Looking for answer that works on SQL Server 2000
0
votes
2answers
111 views
How locks are implemented on multiple cores
For a uni-processor, the lock algorithm is pretty simple.
Lock(threadID) {
Disable Interrupts
If lock is already owned by same thread{
Restore Interrupts
return
}
if lock is free {
...
0
votes
3answers
106 views
Getting a lock on a single dictionary entry instead of whole dictionary?
Say I have a static Dictionary<string, object> and want to do something like the following, except I only want to lock the specific dictionary entry that I'm currently dealing with instead of the ...
0
votes
1answer
150 views
How can I lock a private static field of a class in one static method and then release it in some other instance method?
I have a private static field in my Controller class in an MVC web application.
I have a static method in that controller that assigns some value to that static field, I want to apply lock on that ...
0
votes
5answers
172 views
Locks obtained on instances in java multithreading
I read that the locks in java are obtained on the instance(object) basis (in case of instance method)
Also the locks can be obtained on the object of class (in case of static method).
But I ...
0
votes
3answers
315 views
How to create locks in VC++?
Lets say I am implementing a critical section and protecting some array in VC++, how do I do it using locks in VC++?
0
votes
3answers
267 views
Synchronization in C with system calls
I am doing something a bit weird but i want it fully synchronized. So i thought of asking your help. I have the following:
printf("My name is:");
system("echo syntax_Error");
printf("I am 17 yrs ...
0
votes
3answers
343 views
Python & Multiprocessing, breaking a set generation down into sub-processes
I've got to generate a set of strings based on some calculations of other strings. This takes quite a while, and I'm working on a multiprocessor/multicore server so I figured that I could break these ...
0
votes
2answers
162 views
Locking in PHP to acheive a crtitical section - unexpected results with MySQL
The goal is to have a PHP script with a certain section of the code that can only be executed by one thread/process at a time.
Some restrictions:
semaphores not available on my system
The manual ...
0
votes
1answer
57 views
Monitioring Locks
We are using Livelink for our records management and if a user moves a folder with lost of sub folders it presents a lock on the database and slows the whole system down. Dispite sending many warnings ...