Locking allows different types of resources to be used exclusively by one process at a time.

learn more… | top users | synonyms (1)

-3
votes
0answers
18 views

Windows 7 BIOS Lock [closed]

My school had a computer that was locked today, and from the graphics of it, it was obviously part of the bios. But if you lock the computer, it usually starts up and just says "Enter Password:" and a ...
0
votes
1answer
48 views

Lock private object or the hashset itself?

Assume that i have the hashset below HashSet<string> hsWaitingToBeFetched = new HashSet<string>(); Now i am doing multithreading programming so i have to lock this in order to sync ...
-1
votes
1answer
19 views

Prevent code from being executed at the same time (Create resized image)

I'm developing a httpHandler for serving my webapplication with resized images. If the requested image and specified sixe doesn't exist I'll create that image. The problem is if two (or more) ...
0
votes
1answer
29 views

Can you programmatically check to determine if your android device is in deep sleep mode?

Can you programmatically check to determine if your android device is in deep sleep mode? Reason being, if it is, you may obtain a wake lock or a wifi lock... however, is it is not, you wouldn't want ...
1
vote
0answers
18 views

Android Wi-Fi lock: How long should the program wait after acquiring a wifi lock?

Given an application that sends a network request every 15 minutes and a user that would like the Wi-Fi awoken from sleep when necessary in order to save data, how long should the application wait ...
0
votes
0answers
19 views

Android WiFi lock: How to know when it is applicable to obtain a wifi lock?

What should my android app check to accurately and appropriately determine if a Wi-Fi lock is needed during functionality? Given an application that sends a network request every 15 minutes and a ...
0
votes
0answers
26 views

Error in concurrent reading/saving of object in Transactional method

Facing problem in saving data with concurrent request thread. detail are as below: Spring 3.0.5 Tomcat 1.6 Hibernate 3 Simulating the issue through sample application: DB Detail: user ...
1
vote
1answer
49 views

Custom blocking queue locking issue

I am trying to do some custom implementation of blocking queue with fixed length array of byte arrays. I am not removing polled elements, therefore I adjusted put method to return byte array so that ...
0
votes
1answer
22 views

Android get Lock Timeout Programmatically

I am writing an app to show an activity over the lock screen when the phone is locked and screen off. When the user leave the activity, the keyguard should be shown. The common way to detect whether ...
0
votes
0answers
21 views

Flex deadlocking

I have a flex application that uses LiveCycle and Java WS. While application is working I get one thread taking a lock on a flex.data.SequenceManager object then never releasing it. I suspect that it ...
-1
votes
0answers
18 views

Releasing locks on undeploy [closed]

I have a JBoss server and a FLEX application. Somewhere on the server happens a deadlock. A thread takes a lock on a object and never releases it. When i undeploy the application the lock still ...
1
vote
4answers
57 views

resource busy while rebuilding an index

There is a table T with column a: CREATE TABLE T { id_t integer not null, text varchar2(100), a integer } / ALTER TABLE T ADD CONSTRAINT PK_T PRIMARY KEY (ID_T) / Index was created like ...
0
votes
1answer
10 views

how to lock JFrame position?

i have a problem with JFrame position in the System i want to lock the position of the JFrame in the screen so no-One can move it and reLocate it tnx for your help already
1
vote
2answers
23 views

Multiple users access singleton

I'm using a SQLconnector singleton class with a lock object. My question now is that if multiple users use this class the same time, will this give issues? FYI... Singleton code public sealed class ...
0
votes
1answer
39 views

Locking a txt file with python [duplicate]

Is there any way to lock a text file (both Read & Write) with python script? Or is there any module or built in function for that? While running the script, i want the users not to be able to open ...
0
votes
1answer
36 views

Simultaneous lock and use of SQL Server 2008 table in a c# project?

I have a SQL Server table and this table will be updated by a batch job every 5 minutes using backgroundworker multithread calls. Also i am using thread lock when i am inserting the table via batch ...
0
votes
2answers
21 views

When and how to use Python's RLock

Reading through the Python docs I came across RLock. Can someone explain to me (with example) a scenario in which RLock would be preferred to Lock? With particular reference to: RLock's “recursion ...
1
vote
1answer
36 views

Detect when iOS device wakes up from sleep

Is there anyway I can detect when the device wakes up? By sleep I mean device with the screen off, and by wakes up I mean when the device's screen is on or when lock screen is showed (when home or ...
0
votes
0answers
17 views

How to use exclusive locks in MySQL?

I'm trying to implement my own version of session handler using MySQL in PHP. My version differs from existing ones (like Zend's) in that mine is namespaced and each namespace is stored and locked ...
2
votes
1answer
30 views

New table into Oracle db via SAS, lock table while writing

Can I lock for all access (including Oracle based queries) a table in an Oracle db via a SAS ODBC connection? I am currently running a script in SAS which drops and replaces a table in an Oracle db ...
0
votes
0answers
27 views

Do Contention Rate rises with more locks in C# code?

Do contention rate increases with increase of locks in code? Consider below code. public partial class _Default : System.Web.UI.Page { private static string count = "0"; protected void ...
-2
votes
0answers
30 views

This might be an alternative to locks. Why does it not work, or how is this technique called? [closed]

Test-and-set and compare-and-swap instructions (and the semaphores and mutexes built on top of them) can take far longer to be processed than ordinary instructions, which is time wasted at the expense ...
-6
votes
0answers
40 views

Real example of using FileLock and FileWriter in java [closed]

I need an example of code (no need references to books, javadoc or articles plz) gain a lock on file (using FileLock) write to file there "123", fileWriter.write("123") release the lock close a ...
0
votes
1answer
49 views

About boost::lock_guard and boost::unique_lock

I was hoping someone could tell me if my understanding on the following 3 locks is correct and possibly add to it. my main concern is speed with minimum overhead. boost::lock_guard ...
0
votes
1answer
38 views

methods only allowed run in single user

class Lock { private static bool _isLocked = false; private static object _objLock = new object(); public bool acquireLock() { lock (_objLock) { if ...
2
votes
1answer
50 views

Locking richtextboxes called from non-UI thread

Given the following code, how would I be able to lock the richtextbox so that each log-call gets to finish working before another can start typing to it? private delegate void ...
0
votes
1answer
27 views

Do I need an additional lockfile when locking access to a file in bash

I am currently looking at locks in Bash. In the script I am working with I have a file that may be used concurrently by multiple invocations of the same or other scripts. In order to synchronize the ...
0
votes
0answers
14 views

Hibernate update query does not increment version field

I have an entity (call it MyEnt) with a @Version field an I execute the following update query (actually using Spring Data JPA): Query query = entityManager.createQuery("update MyEnt me set me.status ...
0
votes
1answer
31 views

Java: Fine grain locking for requests?

I'm trying to create a fine grain locking mechanism for the following scenario: I have a data store with many serialised Cache objects inside it. Each Cache belongs to a certain person, group or ...
1
vote
1answer
64 views

ReentrantLock -> lockInterruptibly() won't check interrupt state sometimes?

Recently i've been refactoring my project with "ReentrantLock" to simplify the logic. The general idea is: 1. the "main" runnable thread is running on its own 2. if everything is in order, the main ...
-2
votes
1answer
48 views

Writing to the text file using FileLock (nio) [closed]

I want write some text to text file, locking it from another threads (edit: processes): EDIT: If file clocked, there is special flag as I understand that says: "do not bother me", in order ...
0
votes
1answer
19 views

Please help me understanding MySQL InnoDB Transactions

I'm trying to understand the locking mechanisms for InnoDB. Let's say i have the following PHP script: mysql_query('BEGIN;'); $a=mysql_query('SELECT id, status FROM testtable WHERE id=123 LIMIT 1 ...
0
votes
1answer
34 views

Can't execute first thread with mutex

I want to finish my threads with a mutex. The first thread won't execute, thread 2 & 3 execute. Does anyone know what this problem could be? Sometimes thread 1 is executed but then 2 or 3 is not ...
-4
votes
0answers
19 views

SQL Server lock waittypes [closed]

I use SQL Server 2012 and want to know sql server lock wait types and solutions to solve database lock for each type of lock.
0
votes
0answers
25 views

Distributed Lock of Temporary Data with Failover

I use .NET. I have data that's read and written frequently. However the temporary nature of the data is such that it doesn't make much sense to persist it. In fact it makes more sense to purge it ...
1
vote
2answers
39 views

Deadlock in acquiring multiple locks

I have a following code snippet (The code is in Java, but I have tried to reduce as much clutter as possible): class State { public synchronized read() { } public synchronized ...
4
votes
1answer
47 views

Bulk insert into partitioned table and table level lock

I want to know the core reason(the mechanics of segments, blocks, locks that the engine does) why bulk insert(with direct-path) locks the entire table so if I insert into a partition, I can't truncate ...
0
votes
0answers
24 views

Quickly update a large amount of rows in a table, without blocking inserts on referencing tables, in SQL Server 2008

Context: I have a system that acts as a Web UI for a legacy accounting system. This legacy system sends me a large text file, several times a day, so I can update a CONTRACT table in my database (the ...
0
votes
2answers
27 views

lock() on the same object I'm trying to exclusively access or use separate locking object?

private class MyClass { private static MyObject myObject = new MyObject(); private void ModifyObject() { lock(myObject) { myObject.UnsafeMethod(); } ...
0
votes
1answer
40 views

How to lock a file from editing in C#?

I've an idea to block a certain website between a time period, so on GUI I'll give input to block a website like facebook between 8AM to 4PM. so what gonna do is whenever user select facebook from ...
0
votes
1answer
30 views

Negative SPID in SQL Server?

I am trying to find and kill a session that has set a lock on one of the table and is stopping many other queries from executing. For that I am using the following script: SELECT REQUEST_MODE, ...
0
votes
1answer
44 views

Isn't a read/write lock actually only a write lock?

We have an assignment where we are given a simple spinlock (modified so that it will catch errors and deadlocks and alert us) and a waitqueue, and we need to build a read/write lock out of it. Since ...
0
votes
0answers
22 views

Process incomplete transactions for products in iOS 6+

I am developing iphone app to buy physical goods. For this I am using PayPal Adaptive Payments using PayPal iOS SDK. Everything is working fine. But I am not able to decide how to process incomplete ...
0
votes
0answers
15 views

My app unlocks the screen through shake but after 3-4 mins on locking the device the shake is not detected in the service?

I am making an app which unlocks the screen after i shake my device and locks it after 1 second. This works great when I have connected the device with my pc. The problem arises when i left the device ...
1
vote
2answers
66 views

how to lock a file stream without a mutex

I have been locking/unlocking files in multi-thread applications using something like void Write_File(FILE* Input_File) { flockfile(Input_File); Read_Stuff(); ...
0
votes
3answers
49 views

Do databases always lock non-existent rows after a query or update?

Given: customer[id BIGINT AUTO_INCREMENT PRIMARY KEY, email VARCHAR(30), count INT] I'd like to execute the following atomically: Update the customer if he already exists; otherwise, insert a new ...
0
votes
0answers
23 views

BPlusTree crabbing latches performance

I was developing an in-memory version of B+Tree with crabbing technique (you have to obtain lock of child before releasing lock on parent). My target language of implementation is C# in my ...
0
votes
0answers
21 views

Sqlite EF global lock write

I have an Sqlite database mapped in an Entity Framework context. I write on this database from several threads (bad idea, i know). However i tried using a global lock for my application like this: ...
0
votes
1answer
39 views

Race condition in ZooKeeper and Python based message queue

I've been evaluating ZooKeeper as a simple message queue and I've written two very simple scripts: mq feeder and mq consumer. The feeder, below, is inly pushing 20 jobs to the queue and then is ...
0
votes
0answers
8 views

How to avoid Data Reloading in the page layout when unlock the phone in Android?

I have created one app in Android which loads data from database. When I lock the phone and unlock it again, different data loaded in the same page layout? Can anyone please help how to avoid data ...

1 2 3 4 5 64