Tagged Questions
Mutual exclusion means that the processes execute the CS in time intervals that do not overlap. • The ME requirement is one of the most basic in an operating system; without it the OS cannot share resources safely.
10
votes
8answers
5k views
Is my spin lock implementation correct and optimal?
I'm using a spin lock to protect a very small critical section. Contention happens very rarely so a spin lock is more appropriate than a regular mutex.
My current code is as follows, and assumes x86 ...
7
votes
3answers
282 views
Mutually exclusive regular expressions
If I have a list of regular expressions, is there an easy way to determine that no two of them will both return a match for the same string?
That is, the list is valid if and only if for all strings ...
7
votes
6answers
1k views
C#: How to prevent two instances of an application from doing the same thing at the same time?
If you have two threads within an application, and you don't want them to run a certain piece of code simultaneously, you can just put a lock around the piece of code, like this:
lock (someObject) {
...
4
votes
3answers
1k views
What's the best linux kernel locking mechanism for a specific scenario
I need to solve a locking problem for this scenario:
A multi CPU system.
All of the CPU's use a common (software) resource.
Read only access to the resource is very common. (Processing of incoming ...
3
votes
3answers
52 views
How do I achieve mutual exclusion like in the lock statement, but the block would be skipped if it is locked?
Using the lock statement, one can "ensure that one thread does not enter a critical section of code while another thread is in the critical section. If another thread tries to enter a locked code, it ...
3
votes
3answers
73 views
Concurrent access to groups of objects
I'm trying to develop an application that consists of a pool of threads, using a work-stealing algorithm to concurrently execute tasks.
These tasks
access a predefined set of objects;
must ...
3
votes
5answers
3k views
Difference Between Monitor & Lock?
What's the difference between a monitor and a lock?
If a lock is simply an implementation of mutual exclusion, then is a monitor simply a way of making use of the waiting time inbetween method ...
3
votes
1answer
424 views
Mutex Stored Procedure
I want to create some distributed mutual exclusion using a database table. It would be nice to have the following interface on a stored procedure:
Wait(uniqueidentifier)
I was originally thinking of ...
3
votes
4answers
352 views
Why the name “monitor”?
I'm referring to monitors as described here:
http://en.wikipedia.org/wiki/Monitor_(synchronization)
None of the definitions here seem apropos:
http://www.thefreedictionary.com/monitor
So why are ...
2
votes
2answers
75 views
Does CFRETURN in a CFLOCK properly release the lock?
I am writing some code with CFLOCK tags, and am at a point where my code would return somewhere within a CFLOCK. Example:
<cflock timeout="30" name="mylock">
... do some processing ...
...
2
votes
3answers
334 views
Cassandra mutual exclusion locking (synchronization)
Is there anyway to synchronise client using cassandra built in functions?
I need to perform some operations and those operations need to be synchronized with all other clients (mutual exclusion).
In ...
2
votes
5answers
291 views
What is equivalent of the C# lock statement in PHP?
For concurrency and ensuring the integrity of the data, how would you obtain a mutual-exclusion lock for a given object? Would you need to use locking within the database, or a file, or does PHP ...
2
votes
7answers
2k views
Mutual-exclusion using TestAndSet() instruction
The book Operating System Principles by Silberschatz, Galvin and Gagne contains the following definition for the TestAndSet() instruction in the chapter on synchronization:
boolean TestAndSet(boolean ...
2
votes
1answer
259 views
Read/write synchronization
I have a data structure whose operations can be categorized as read operations (e.g. lookup) and write operations (e.g. insertion, removal). These operations should be synchronized so that:
Read ...
1
vote
1answer
98 views
Does std::tr1::shared_ptr do mutual exclusion?
I have a class which contains a BYTE*, a reference counter and a CRITICAL_SECTION which protects both of them from concurrent access.
I wanna replace all that with a std::tr1::shared_ptr<BYTE>. ...
1
vote
1answer
39 views
violating mutual exclusion with non atomic wait(s) - Semaphores
I'm doing an 'operating systems' topic and I can't get my head around this:
We have been asked to demonstrate how mutual exclusion can be violated if wait(s) is not handled atomically. (semaphore ...
1
vote
1answer
61 views
Making pthread_rwlock_wrlock recursive
I have a problem regarding the behaviour of the pthread function pthread_rwlock_wrlock. The specification linked above states that when one thread has locked the lock for writing and the same thread ...
1
vote
0answers
78 views
Mutual exclusion problem
The following solution to the mutual exclusion problem, discussed earlier, published in 1966 by H. Hyman in the Communications of the ACM. It was listed, in pseudo Algol, as follows.
1 Boolean ...
1
vote
4answers
170 views
lock file between C and php
Although the title mentions file, it doesn't have to be a file. Any locking mechanism would do.
Here is the situation: I have a daemon process written in C, and a web page in php. I'd like to have a ...
1
vote
2answers
62 views
Mutual Exclusion Without Touching Both Processes
I have a unique problem. There are two processes (P0 and P1) trying to access one file. P0 is writing information to the file and P1 is reading the information. There is a race condition occurring ...
1
vote
2answers
298 views
MS-Access Junction Table Inserts/Deletions Between Two Mutually Exclusive Lists (2 Listboxes)
With this kind of design, I would like to create a functionality with which to add and delete records from the junction table.
The case is from when editing an employee and selecting what exams they ...
1
vote
5answers
3k views
PHP mutual exclusion (mutex)
Read some texts about locking in PHP.
They all, mainly, direct to http://php.net/manual/en/function.flock.php .
This page talks about opening a file on the hard-disk!!
Is it really so? I mean, this ...
1
vote
2answers
50 views
SELECT limiting to only results based on a CSV list from a separate table
So I have a list of CSVs in one table. (EG: 1,3,19 )
I want to search out all of the usernames from the other table where the ids match any of those.
I feel like I should be able to do something ...
1
vote
4answers
377 views
Mutual exclusion: is this safe?
Is this pattern for mutual exclusion as safe as I think it is? If so, what do you call it?
lock (_lock) {
if (_flag) return;
else _flag = true;
}
try {
//critical code...
}
finally {
...
0
votes
1answer
28 views
Radio Buttons not mutually exclusive : HTML [closed]
I have the following simple form set up. My problem is that for some reason my two radio buttons are not mutually exclusive. You can select both simultaneously. From everything I have been able to ...
0
votes
1answer
63 views
Peterson-2 mutual exclusion algorithm
The contention-free complexity for classic Peterson-2 algorithm is 4 (because it performs 4 read/write operations to shared-registers memory)Is there some verion of Peterson-2 algorithm, which ...
0
votes
1answer
21 views
Request Mutually Exclusive Record
I'm working with C# on two types of applications. One is a web service one is a MVC3 application.
I have the same problem with both. I am trying to create a method that when requested, returns a ...
0
votes
4answers
76 views
SQL Avoid summing rows multiple times based on LIKE expression
I have a table with bank transactions with columns id, tDate, description, cashOut, cashIn. I want to see how I spend my money, specifically at Amazon and a shop called Mazo, so I want a result like ...
0
votes
1answer
67 views
C# Web Service Mutual Exclusion
elI have two types of nodes. One is a coordinator and another is a worker node.
They communicate through SOAP.
All worker nodes send requests to the coordinator for a mutually exclusive database ...
0
votes
1answer
160 views
problem in peterson's lock in shared memory
I have implemented peterson' algorithm for mutual exclusion in shared memory. I am using shared memory between a c++ and a java process(using jni) for communication. The problem is that I am still ...
0
votes
3answers
233 views
Trigger when `SelectedIndex` greater than 0
How can I set a trigger on a ComboBox that when the SelectedIndex is greater than 0 (basically, when an option is selected) another ComboBox gets modified. What I have are two ComboBoxes but the user ...
0
votes
1answer
250 views
How to implement a good Android global object to pass data in real-time from background thread to activity in real-time without deadlock?
@Jusit suggested I use a global object to pass data from a background thread to an activity and it worked. But now I am worried about deadlock and if there is a good way to avoid/prevent it. Also I am ...
0
votes
1answer
137 views
Mutual exclusion across user session in Citrix environment
I have an application that runs in Citrix environment. The application can be run simultaneously by several users in different user sessions. In my application I am writing to a file which should be ...
0
votes
1answer
44 views
does my solution satisfy the requirements for a mutual exclusion
i wrote 2 processes in order to satisfy mutual exclusion but om not sure if it is..
my initial flag value is 0.
process 1
while(1){
while flag=1 do{-nothing-}
flag=1
-enter critical section-
...
0
votes
1answer
193 views
File open problem with many process in C
Iam working in c++ .i have an problem while run an application ,which have my dll within it ,My dll code is suitable to application (needed process).i wrote a log file (xml file) throughout ...
0
votes
2answers
96 views
How to prevent multiple access to a webpage?
Say I have a web service where I want to serve the content only once. After it is served any other access to that url should generate an error message.
How would I go about doing something like this? ...
0
votes
2answers
272 views
how to model mutually exclusive attributes in UML?
I'm working up an analysis model in UML, and I'm a bit stuck when trying to represent a constraint on a couple of attributes in a class diagram. In the following class:
+-----------+
| SomeClass |
...
0
votes
2answers
357 views
Mutual exclusion and C Sockets
I am maintaining an existing system where previous developers on each operation is performed on the socket, to which multiple threads are required to read and write to, the previous developers have ...
-1
votes
7answers
108 views
Mutual exclusion
hello ive got an application wich uses a collection in this case a queue from diffrent thereads
an object gets enqueued in one thread while anouther gets dequeued in a diffrent thread
these actions ...
-1
votes
2answers
180 views
Peterson's algorithm: Can deadlock occur [closed]
if in peterson's algo, A process is preempted just after comming out of critical region before setting its flag to false. Then will not be there a deadlock. ??
plz help !