active questions tagged semaphore - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T08:50:26Zhttp://stackoverflow.com/feeds/tag/semaphorehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1832395/semtimedwait-not-supported-properly-on-redhat-enterprise-linux-5-3-onwards0sem_timedwait not supported properly on RedHat Enterprise Linux 5.3 onwards?pxb2009-12-02T11:38:24Z2009-12-07T17:13:54Z
<p>Hi,</p>
<p>We're seeing odd behaviour on RedHat Enterprise Linux systems with pthreads sem_timedwait. It's only occurring with versions 5.3 onwards.</p>
<p>When we create the semaphore on a background thread with sem_init, no error is returned. When we do sem_timedwait, we get an immediate return with errno = 38 (ENOSYS) indicating it's not supported.</p>
<p>If we do the same thing on the main thread, it works as expected and we get no error from sem_timedwait.</p>
<p>We don't see it on RHEL 5.2 or before. We've tried compiling our code with gcc 3.2.3 and 4.1.2 and get the same result, so it seems to be a run-time issue.</p>
<p>So, my questions (finally ;)</p>
<p>1) has anyone else seen this?
2) is it a known issue with RHEL 5.3 onwards?
3) we're using sem_timedwait to sleep a single thread. What alternatives are there on Linux to do the same thing?</p>
<p>If this is a duplicate of another question, let me know. I've looked but can't find one with the same question, just similar ones for OSX which isn't what we're using.</p>
<p>thanks,
pxb</p>
<p>Update: just done some more testing with the following results:</p>
<ul>
<li>if I do a 64 bit build using gcc 4.1.2 on a RHEL5.4 box (with -L/usr/lib64 and -lstdc++ -lrt) and run it on a 64 bit install of RHEL5 it works fine</li>
<li>if I do a 32 bit build using gcc 4.1.2 on a RHEL5.1 box (with -L/usr/lib and -lstdc++ -lrt) and run it on a exactly the same 64 bit RHEL5 box, we get ENOSYS errors from sem_timedwait</li>
</ul>
<p>So, it appears to be a difference between the 64 and 32 bit runtime libs on RHEL5.4 (and seemingly RHEL5.3). The only other difference was that the 32 and 64 bit builds were done of RHEL5.1 and RHEL5.4 boxes respectively.</p>
http://stackoverflow.com/questions/1859964/is-there-a-good-semaphore-for-xna-on-the-xbox-3601Is there a good Semaphore for XNA on the XBox 360?Cygon2009-12-07T13:24:32Z2009-12-07T15:18:25Z
<p>I'm looking for a fast and efficient implementation of a Semaphore for the .NET Compact Framework. There has been another Question here on SO (<a href="http://stackoverflow.com/questions/1746923/semaphores-in-net-compact-framework">Semaphores in .NET compact framework</a>) in which it was suggested to use P/Invoke, but this is not possible in the XNA Framework running on the XBox 360.</p>
<p>I can offer two implementations of my own, but both are sub-optimal, I believe.</p>
<p><strong><a href="http://pastebin.com/f6e10b954" rel="nofollow">Semaphore using an AutoResetEvent</a></strong> (pastebin)<br>
One possible implementation of a managed Semaphore would, using an AutoResetEvent.</p>
<p>In this case, when work becomes available, the AutoResetEvent will transitioning only one thread into the 'runnable' state. When the OS thread scheduler runs the thread, it will reopen the AutoResetEvent, bringing the next thread into the 'runnable' state. In other words, threads will be started sequentially.</p>
<p><strong><a href="http://pastebin.com/f3946e907" rel="nofollow">Semaphore using a ManualResetEvent</a></strong> (pastebin)<br>
Another possible implementation would be using a ManualResetEvent.</p>
<p>In this case, when work becomes available, the ManualResetEvent will transition all threads into the 'runnable' state. All threads the OS thread scheduler runs compete for the work items until the first thread that runs out of work resets the ManualResetEvent again. In other words, possibly all threads will be woken for a short time even if not all threads are required.</p>
<p>Does anyone know of a better implementation out there or can provide suggestions for improving mine?</p>
http://stackoverflow.com/questions/1635416/are-benaphores-worth-implementing-on-modern-oss1Are "benaphores" worth implementing on modern OS's?Jeremy Friesner2009-10-28T05:59:58Z2009-12-07T01:09:52Z
<p>Hi all, </p>
<p>Back in my days as a BeOS programmer, I read <a href="http://www.haiku-os.org/legacy-docs/benewsletter/Issue1-26.html#Engineering1-26" rel="nofollow">this article</a> by Benoit Schillings, describing how to create a "benaphore": a method of using atomic variable to enforce a critical section that avoids the need acquire/release a mutex in the common (no-contention) case.</p>
<p>I thought that was rather clever, and it seems like you could do the same trick on any platform that supports atomic-increment/decrement.</p>
<p>On the other hand, this looks like something that could just as easily be included in the standard mutex implementation itself... in which case implementing this logic in my program would be redundant and wouldn't provide any benefit.</p>
<p>Does anyone know if modern locking APIs (e.g. pthread_mutex_lock()/pthread_mutex_unlock()) use this trick internally? And if not, why not?</p>
http://stackoverflow.com/questions/1599608/semaphore-controlled-resources-what-is-the-clean-shutdown-sequence-pattern0Semaphore controlled resources - what is the clean shutdown sequence/patternThomas Maierhofer2009-10-21T09:09:00Z2009-11-19T23:04:21Z
<p>If i control a pool of resources with a semaphore, what is the clean shutdown sequence for this resource pool?</p>
<pre><code> class ResourcePool
{
Semaphore resourceSemaphore;
Stack<ResourceClass> resources;
public ResourcePool()
{
resources ... // Init some Resources in the stack
resourceSemaphore= new Semaphore(resources.Count,resources.Count);
}
public void ResourceTask()
{
resourceSemaphore.WaitOne();
ResourceClasscurrent = null;
try
{
current = resources.Pop();
current.Task();
}
finally
{
if( current != null )
resources.Push(current);
resourceSemaphore.Release();
}
}
}
</code></pre>
<p>How to implement a clean shutdown sequence for this pool? Maybe the resources use IDisposable, this should eventually come into play. </p>
http://stackoverflow.com/questions/1765301/fcntl-for-thread-or-process-synchronization2fcntl() for thread or process synchronization?raj_arni2009-11-19T18:02:50Z2009-11-19T19:59:11Z
<p>Is it possible to use fcntl() system call on a file to achieve thread/process synchronization (instead of semaphoress)? </p>
http://stackoverflow.com/questions/1746923/semaphores-in-net-compact-framework3Semaphores in .NET compact frameworkFuzz2009-11-17T06:12:29Z2009-11-19T15:50:16Z
<p>Unfortunately, there is no Semaphore in System.Threading when using the .NET Compact Framework.
I'm not sure why that is, does anyone have an idea?</p>
<p>After googling I've found a bunch of people giving their own implementations, but none of them really worked great... or at all! </p>
<p>So I've come to ask the experts...</p>
<p>Does anyone have a good semaphore class/library they can recommend for the .NET compact
framework?</p>
<p>OR</p>
<p>Is there someway I can emulate the behaviour?</p>
<p>I have a typical producer/consumer setup in which a thread pushes objects on to a Queue (System.Collections).
I then want a consumer thread to pull objects off the queue and do work, but obviously only when there are things on the queue to work with!</p>
<p>I am working in C#, but I'll take solutions/pseudo in any language so long as I can implement it on .NET CF.</p>
http://stackoverflow.com/questions/1748902/linux-inter-process-reentrant-semaphore1Linux inter-process reentrant semaphoreAdal2009-11-17T13:34:04Z2009-11-17T14:16:22Z
<p>I'm porting a Windows application to Linux and I have a synchronization problem.</p>
<p>In Windows I'm using a system-level named mutex to sync access to a shared memory block.</p>
<p>How do I emulate that in Linux? I've created a SystemV semaphore, using semget. The problem is that it is not reentrant, if I already hold it it will block, unlike on Windows. I could add a reference count to it, but then I would need to synchronize access to that, which means another (this time for the current process only) mutex.</p>
<p>Is there a class somewhere which provides a reentrant interprocess lock (maybe in Boost)?</p>
<p>BTW, using a file lock is not acceptable since it will probably be too slow (I need ultra-low latency communication between the two processes).</p>
http://stackoverflow.com/questions/866101/re-shared-memory-and-semaphores0Re: Shared Memory and SemaphoresAnonymous2009-05-14T22:06:38Z2009-11-16T22:00:02Z
<p>Is an IPC mechanism using shared memory and semaphores for synchronization simplex like pipes or duplex like message queues?</p>
http://stackoverflow.com/questions/1683976/multi-threaded-bash-programming-generalized-method1Multi-threaded BASH programming - generalized method?NVRAM2009-11-05T22:07:18Z2009-11-06T18:24:44Z
<p>Ok, I was running <a href="http://www.povray.org/" rel="nofollow">POV-Ray</a> on all the demos, but POV's still single-threaded and wouldn't utilize more than one core. So, I started thinking about a solution in BASH.</p>
<p>I wrote a general function that takes a list of commands and runs them in the designated number of sub-shells. This actually works but I don't like the way it handles accessing the next command in a <strike>thread-safe</strike> <i>multi-process</i> way:</p>
<ul>
<li>It takes, as an argument, a file with commands (1 per line), </li>
<li>To get the "next" command, each process ("thread") will:
<ul>
<li>Waits until it can create a lock file, with: <strong>ln $CMDFILE $LOCKFILE</strong></li>
<li>Read the command from the file,</li>
<li>Modifies $CMDFILE by removing the first line,</li>
<li>Removes the $LOCKFILE.</li>
</ul></li>
</ul>
<p><strong>Is there a cleaner way to do this?</strong> I couldn't get the sub-shells to read a single line from a FIFO correctly.
<hr/>
Incidentally, <strong>the point of this is to enhance what I can do on a BASH command line</strong>, and not to find non-bash solutions. I tend to perform a lot of complicated tasks from the command line and want another tool in the toolbox.</p>
<p>Meanwhile, here's the function that handles getting the next line from the file. As you can see, it modifies an on-disk file each time it reads/removes a line. That's what seems hackish, but I'm not coming up with anything better, since FIFO's didn't work w/o <em>setvbuf()</em> in bash.</p>
<pre><code>#
# Get/remove the first line from FILE, using LOCK as a semaphore (with
# short sleep for collisions). Returns the text on standard output,
# returns zero on success, non-zero when file is empty.
#
parallel__nextLine()
{
local line rest file=$1 lock=$2
# Wait for lock...
until ln "${file}" "${lock}" 2>/dev/null
do sleep 1
[ -s "${file}" ] || return $?
done
# Open, read one "line" save "rest" back to the file:
exec 3<"$file"
read line <&3 ; rest=$(cat<&3)
exec 3<&-
# After last line, make sure file is empty:
( [ -z "$rest" ] || echo "$rest" ) > "${file}"
# Remove lock and 'return' the line read:
rm -f "${lock}"
[ -n "$line" ] && echo "$line"
}
</code></pre>
http://stackoverflow.com/questions/1647750/blackberry-semaphore-class2Blackberry Semaphore classspurserh2009-10-30T02:51:18Z2009-10-30T14:03:38Z
<p>Hello, </p>
<p>I can't seem to find anything equivalent to a Semaphore in the Blackberry Java Reference. What am I missing? java.util.concurrent isn't even there. </p>
<p>Thanks! Sean</p>
http://stackoverflow.com/questions/265708/do-i-need-a-semaphore-when-reading-from-a-global-structure6Do I need a semaphore when reading from a global structure?JXG2008-11-05T16:27:58Z2009-10-27T10:59:49Z
<p>A fairly basic question, but I don't see it asked anywhere.</p>
<p>Let's say we have a global struct (in C) like so:</p>
<pre><code>struct foo {
int written_frequently1;
int read_only;
int written_frequently2;
};
</code></pre>
<p>It seems clear to me that if we have lots of threads reading and writing, we need a semaphore (or other lock) on the <code>written_frequently</code> members, even for reading, since we can't be 100% sure that assignments to this struct will be atomic.</p>
<p>If we want lots of threads to read the <code>read_only</code> member, and none to write, to we need a semaphore on the struct access just for reading?</p>
<p>(I'm inclined to say no, because the fact that the locations immediately before and after are constantly changed shouldn't affect the <code>read_only</code> member, and multiple threads reading the value shouldn't interfere with each other. But I'm not sure.)</p>
<p><hr /></p>
<p>[Edit: I realize now I should have asked this question much better, in order to clarify <em>very specifically</em> what I meant. Naturally, I didn't really grok all of the issues involved when I first asked the question. Of course, if I comprehensively edit the question now, I will ruin all of these great answers. What I meant is more like:</p>
<pre><code>struct bar {
char written_frequently1[LONGISH_LEN];
char read_only[LONGISH_LEN];
char written_frequently2[LONGISH_LEN];
};
</code></pre>
<p>The major issue I asked about is, since this data is part of a struct, is it at all influenced by the other struct members, and might it influence them in return?</p>
<p>The fact that the members were ints, and therefore writes are likely atomic, is really just a red herring in this case.]</p>
http://stackoverflow.com/questions/1622425/multiprocess-synchronization-with-a-single-semaphore0Multiprocess Synchronization with a Single SemaphoreKidDaedalus2009-10-25T23:12:07Z2009-10-27T04:39:30Z
<p>We're covering multithreaded programming in a class I'm taking. The professor offered a bonus question that I have been trying, to no avail, to figure out:</p>
<p>Each of processes P0, P1, P2 and P3 have to wait for the other three to cross or reach a particular synchronization point in their code, and only then may that process cross its own synchronization point. </p>
<p>I already know how to answer the question with four semaphores, the hard part is doing it with only one semaphore.</p>
<p>Any suggestions or hints as to how to proceed?</p>
http://stackoverflow.com/questions/1598734/fifo-semaphore-test0FIFO semaphore testL4N02009-10-21T04:39:09Z2009-10-21T04:53:11Z
<p>Hello everyone,
I have implemented FIFO semaphores but now I need a way to test/prove that they are working properly. A simple test would be to create some threads that try to wait on a semaphore and then print a message with a number and if the numbers are in order it should be FIFO, but this is not good enough to prove it because that order could have occurred by chance. Thus, I need a better way of testing it.<br />
If necessary locks or condition variables can be used too.<br />
Thanks</p>
http://stackoverflow.com/questions/355030/is-it-possible-to-avoid-a-wakeup-waiting-race-using-only-posix-semaphores-is-i0Is it possible to avoid a wakeup-waiting race using only POSIX semaphores? Is it benign?Norman Ramsey2008-12-10T03:48:34Z2009-10-19T02:11:31Z
<p>I'd like to use POSIX semaphores to manage atomic get and put from a file representing a queue. I want the flexibility of having something named in the filesystem, so that completely unrelated processes can share a queue. I think this plan rules out pthreads. The named posix semaphores are great for putting something in the filesystem that any process can see, but I can't find the standard CondWait primitive:</p>
<pre><code>... decide we have to wait ....
CondWait(sem, cond);
</code></pre>
<p>When CondWait is called by a process it atomically posts to sem and waits on cond. When some other process posts to cond, the waiting process wakes up only if it can atomically decrement sem as well. The alternative of</p>
<pre><code>... decide we have to wait ....
sem_post(sem);
sem_wait(cond);
sem_wait(sem);
</code></pre>
<p>is subject to a race condition in which some other process signals cond just before this process waits on it.</p>
<p>I hardly ever do any concurrent programming, so I thought I would ask SO: if I use a standard POSIX counting semaphore for the condition variable, is it possible that this race is benign?</p>
<p>Just in case anybody wants the larger context, I am building get and put operations for an atomic queue that can be called from shell scripts. </p>
http://stackoverflow.com/questions/1569826/c-semaphores-and-a-barrier-between-threads1C semaphores and a "barrier" between threadsashgromnies2009-10-15T01:17:13Z2009-10-18T13:22:52Z
<p>I'm trying to solve a problem our Operating Systems professor showed us from a previous exam to prepare for the next one.</p>
<p>The problem is to have two threads that execute concurrently and may complete in a different amount of time. After a particular thread is completed, it needs to block until the other thread is completed, then they may continue their execution.</p>
<p>It seems conceptually simple to me, but my code isn't working the way I think it should.</p>
<pre><code>#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <semaphore.h>
#define N 10
sem_t t_1_sem;
sem_t t_2_sem;
void *thread(void *vargp);
/* shared by both threads*/
struct {
int count;
} thread_count;
int main() {
pthread_t tid, tid1;
thread_count.count = 0;
sem_init(&t_1_sem, 0, 1);
sem_init(&t_2_sem, 0, 1);
printf("Hello from main thread! tid:%ld pid:%d\n", pthread_self(), getpid());
pthread_create(&tid, NULL, thread, NULL);
pthread_create(&tid1, NULL, thread, NULL);
pthread_join(tid, NULL);
pthread_join(tid1, NULL);
exit(0);
}
void *thread(void *vargp) {
int i, tid;
int val, val2;
sem_getvalue(&t_1_sem, &val);
sem_getvalue(&t_2_sem, &val2);
printf("initial value::: %d : %d\n", val, val2);
tid = thread_count.count;
thread_count.count += 1;
for(i = 0;i<N;i++){
printf("%d, %d\n", tid, i);
fflush(stdout);
//sleep(0.1);
}
// TODO
// barrier
sem_getvalue(&t_1_sem, &val);
sem_getvalue(&t_2_sem, &val2);
printf("second value::: %d : %d\n", val, val2);
int sem_val;
if(tid == 0){
// free other
sem_getvalue(&t_1_sem, &sem_val);
printf("posting to 2, waiting on 1 w/ %d count\n", sem_val);
sem_post(&t_2_sem);
// wait on this one
sem_wait(&t_1_sem);
printf("done waiting on 1\n");
} else if(tid == 1){
sem_getvalue(&t_2_sem, &sem_val);
printf("posting to 1, waiting on 2 w/ %d count\n", sem_val);
sem_post(&t_1_sem);
sem_wait(&t_2_sem);
printf("done waiting on 2\n");
}
sem_getvalue(&t_1_sem, &val);
sem_getvalue(&t_2_sem, &val2);
printf("final value::: %d : %d\n", val, val2);
return NULL;
}
</code></pre>
<p>What I'm expecting to see is both of the threads counting til 10, then the two "final value" <code>printf</code>'s happening next to each other. However, what I'm seeing is the "final value" prints occurring immediately after the thread finishes counting to 10 - it doesn't seem to wait.</p>
<p>I'm also getting really weird values for the <code>sem_val</code> integer I print in the "posting to N" <code>printf</code>'s, e.g.:</p>
<pre><code>Hello from main thread! tid:-1606277344 pid:5479
initial value::: 0 : 0
0, 0
initial value::: 0 : 0
1, 0
0, 1
1, 1
0, 2
1, 2
1, 3
1, 4
1, 5
0, 3
1, 6
0, 4
1, 7
0, 5
1, 8
0, 6
1, 9
0, 7
second value::: 0 : 0
posting to 1, waiting on 2 w/ -1809628646 count
0, 8
done waiting on 2
final value::: 0 : 0
0, 9
second value::: 0 : 0
posting to 2, waiting on 1 w/ -1809628646 count
done waiting on 1
final value::: 0 : 0
</code></pre>
<p>Any ideas/hints?</p>
http://stackoverflow.com/questions/169964/how-to-prevent-a-script-from-running-simultaneously7How to prevent a script from running simultaneously?Oli2008-10-04T08:14:48Z2009-10-13T14:39:25Z
<p>I want to prevent my script running more than once at a time. </p>
<p>My current approach is</p>
<ul>
<li>create a semaphore file containing the pid of the running process</li>
<li>read the file, if my process-id is not in it exit (you never know...)</li>
<li>at the end of the processing, delete the file</li>
</ul>
<p>In order to prevent the process from hanging, I set up a cron job to periodically check the file if its older then the maximum allowed running time and kills the process if it’s still running.</p>
<p>Is there a risk that I'm killing a wrong process?</p>
<p>Is there a better way to perform this as a whole?</p>
<p>-Thanks!</p>
http://stackoverflow.com/questions/1553012/what-is-the-mutex-and-semaphore-in-c-where-we-need-to-implement1What is the Mutex and semaphore In c#? where we need to implement?Jaswant Agarwal2009-10-12T06:26:47Z2009-10-12T18:27:49Z
<p>What is the Mutex and semaphore In c#? where we need to implement?</p>
<p>How can we work with them in multithreading?</p>
http://stackoverflow.com/questions/1093052/semget-fails-with-permission-denied0semget fails with "Permission denied" ps72009-07-07T15:34:11Z2009-10-08T13:04:00Z
<p>Hi
I have 2 processes P1 and P2. P1 is running as root, and is creating a semaphore with the following call:</p>
<p>semget (key, 1, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH | IPC_CREAT);</p>
<p>and am trying to get the handle to the same semaphore in another process P2, which is running under the normal user's context. In this process, the semget call succeeds, but semop calls fail with "Permission Denied" (Errno = 13).</p>
<p>Any pointers would be of great help.</p>
<p>~ps7</p>
http://stackoverflow.com/questions/1456405/setting-access-permissions-on-semaphore2Setting Access permissions on Semaphore?Naga Kiran2009-09-21T19:34:56Z2009-09-22T08:43:47Z
<p>I am assuming that once a semaphore is created by a process, it will be accessible by any process/user.</p>
<p>Is it possible to put access restrictions on a particular semaphore so that it can be accessible by only certain processes/users or only certain processes can release the semaphore.<br/>
I see some problems if we make a semaphore accessible by all processes.Eg: a dummy process can read the semaphore and release the lock at wish making a false signal to the actual process that is really waiting for the semaphore lock.</p>
<p>All these questions are arising as I am getting very weird output with the following code snippet:</p>
<pre><code>use Win32::Semaphore;
$sem = Win32::Semaphore->new(0, 1,"reliance2692")
or print "Can't create semaphore\n";
$sem = Win32::Semaphore->open("reliance2692")
or print "Can't open semaphore\n";
print "Semaphore:" . $sem . "\n";
</code></pre>
<p>By running the above program, I am getting the following output</p>
<pre>
Can't create semaphore
Can't open semaphore
</pre>
<p>The output shows that its failed to create a semaphore and even failed to open semaphore.
creating a semaphore might have failed if a semaphore already exists with the given name.
I don't understand why opening a semaphore failed.</p>
<p>Can some clarify the scenario where both creating semaphore & opening semaphore fails.</p>
http://stackoverflow.com/questions/1413785/seminit-on-os-x0sem_init on OS XNippysaurus2009-09-11T23:57:59Z2009-09-20T22:26:14Z
<p>I am working on some code which uses the pthread and semaphore libraries. The sem_init function works fine on my ubuntu machine, but on OS X the sem_init function has absolutely no effect. Is there something wrong with the library or is there a different way of doing it? This is the code I am using to test.</p>
<pre><code>sem_t sem1;
sem_t sem2;
sem_t sem3;
sem_t sem4;
sem_t sem5;
sem_t sem6;
sem_init(&sem1, 1, 1);
sem_init(&sem2, 1, 2);
sem_init(&sem3, 1, 3);
sem_init(&sem4, 1, 4);
sem_init(&sem5, 1, 5);
sem_init(&sem6, 1, 6);
</code></pre>
<p>The values seem to random numbers, and they do not change after the sem_init call.</p>
http://stackoverflow.com/questions/1409920/calling-a-function-in-child-thread-in-qt3Calling a function in child thread in Qt?yesraaj2009-09-11T09:22:16Z2009-09-16T15:25:19Z
<p>I have a main thread that invokes a child thread function at different times but I am not sure whether that is right way of doing it in Qt.What is wrong with the below code and looking for better alternative </p>
<p>There is a main thread running infinitly when ever main thread releases the lock child does a piece of work.</p>
<pre><code>#include <QtCore/QCoreApplication>
#include <QSemaphore>
#include <QThread>
QSemaphore sem(0);
class Background : public QThread
{
protected:
void run()
{
for(;;)
{
sem.acquire(1);
qDebug("Child function ran");
}
}
};
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Background child;
child.start();
qDebug("Main running");
qDebug("release a lock");
sem.release(1);
qDebug("Do somework in main");
//call child
sem.release(1);
sem.release(1);
return a.exec();
}
</code></pre>
http://stackoverflow.com/questions/1431349/semaphore-timeout-mechanism-in-c0Semaphore timeout mechanism in C#snogfish2009-09-16T06:48:36Z2009-09-16T06:50:50Z
<p>Does anyone know how .NET handles a timeout on a call to <code>Semaphore.WaitOne(timeout)</code>?</p>
<p>I'd expect a <code>TimeoutException</code>, but the MSDN documentation doesn't list this in the list of expected exceptions, and I can't seem to find it documented anywhere.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1411008/how-to-display-the-process-currently-holding-a-semaphore1How to display the process currently holding a semaphore?0x6adb0152009-09-11T13:54:57Z2009-09-12T04:00:08Z
<p>In userspace Linux, I have a process blocking on a semaphore, as found by strace. Once the error condition occurs, the blocking is repeatable, so there must be another process that holds the semaphore and did not release it.</p>
<p>Is there a way to know which other process is currently holding the semaphore?</p>
<p><code>ipcs</code> lists the semaphore, so does /proc/sysvipc/sem. Where can I find info on the holding process?</p>
http://stackoverflow.com/questions/1405132/unix-osx-version-of-semtimedop1UNIX/OSX version of semtimedopMike Arthur2009-09-10T12:57:02Z2009-09-10T15:11:06Z
<p>GLibC has a method <code>semtimedop</code> which allows you to perform an operation (<em>a semaphore acquire in this case</em>) which times out after a certain amount of time. Win32 also provides <code>WaitForSingleObject</code> which provides similar functionalty.</p>
<p>As far as I can see there is no equivalent on OSX or other Unices. Can you suggest either the equivalent for semtimedop or a workaround to terminate a semop after a certain amount of time cleanly.</p>
http://stackoverflow.com/questions/1387937/django-simple-rate-limiting2Django: Simple rate limitingPaul Tarjan2009-09-07T07:08:12Z2009-09-07T08:00:29Z
<p>Many of my views fetch external resources. I want to make sure that under heavy load I don't blow up the remote sites (and/or get banned).</p>
<p>I only have 1 crawler so having a central lock will work fine.</p>
<p>So the details: I want to allow at most 3 queries to a host per second, and have the rest block for a maximum of 15 seconds. How could I do this (easily)?</p>
<p>Some thoughts :</p>
<ul>
<li>Use django cache
<ul>
<li>Seems to only have 1 second resolution</li>
</ul></li>
<li>Use a file based semaphore
<ul>
<li>Easy to do locks for concurrency. Not sure how to make sure only 3 fetches happen a second.</li>
</ul></li>
<li>Use some shared memory state
<ul>
<li>I'd rather not install more things, but will if I have to.</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1354144/multi-process-synchronization-better-choice-than-semaphores2Multi-process synchronization - better choice than semaphores?Joe2009-08-30T15:52:11Z2009-08-31T03:33:46Z
<p>I've got a queue resource that is shared across multiple producers and multiple consumers. All are independent processes; no one process "owns" the queue.</p>
<p>By nature of the implementation access to the queue must be controlled and only one process must be allowed to push or pop at any given moment.</p>
<p>I figured using a POSIX named semaphore would be the right solution, however a few of the details are bothering me. (This is a Linux-only implementation, btw.)</p>
<ol>
<li><p>When (if ever) should I do a sem_unlink? Is there any reason to actually remove the queue?</p></li>
<li><p>I'm concerned about a process dying while holding the queue semaphore locked. Is there any good way around this? I can do a timed wait when trying to get the lock, but if the timeout expires I've now got a race condition.</p></li>
<li><p>Is there a better solution for a simple binary lock like this? Perhaps a lockfile using fcntl and/or exclusive opens? </p></li>
</ol>
<p>Thanks.</p>
http://stackoverflow.com/questions/1175868/how-to-wait-block-until-a-semaphore-value-reaches-0-in-windows0How to wait/block until a semaphore value reaches 0 in windowsAnon2009-07-24T05:32:32Z2009-08-19T05:45:20Z
<p>Using the semop() function on unix, it's possible to provide a sembuf struct with sem_op =0. Essentially this means that the calling process will wait/block until the semaphore's value becomes zero. Is there an equivalent way to achieve this in windows?</p>
<p>The specific use case I'm trying to implement is to wait until the number of readers reaches zero before letting a writer write. (yes, this is a somewhat unorthodox way to use semaphores; it's because there is no limit to the number of readers and so there's no set of constrained resources which is what semaphores are typically used to manage)</p>
<p>Documentation on unix semop system call can be found here:
<a href="http://codeidol.com/unix/advanced-programming-in-unix/Interprocess-Communication/-15.8.-Semaphores/" rel="nofollow">http://codeidol.com/unix/advanced-programming-in-unix/Interprocess-Communication/-15.8.-Semaphores/</a></p>
http://stackoverflow.com/questions/1291566/seminit-what-is-the-pshared-parameter-for0sem_init(...): What is the pshared parameter for?Frank2009-08-18T02:59:50Z2009-08-18T04:17:56Z
<p>In a graduate class, we've had to use semaphores to accomplish work with threads. </p>
<p>We were directed to use <code>sem_init</code> along with a bunch of other sem_* procedure but we were not given much information about the details of each of these sem_* methods.</p>
<p>The prototype (and header file) of <code>sem_init</code> is <a href="http://www.opengroup.org/onlinepubs/007908775/xsh/sem%5Finit.html" rel="nofollow">the following</a>:</p>
<pre><code>#include <semaphore.h>
int sem_init(sem_t *sem, int pshared, unsigned int value);
</code></pre>
<p>but I don't understand what the pshared value is used for. According to <a href="http://www.opengroup.org/onlinepubs/007908775/xsh/sem%5Finit.html" rel="nofollow">opengroup.org</a>:</p>
<blockquote>
<p>If the <code>pshared</code> argument has a non-zero
value, then the semaphore is shared
between processes; in this case, any
process that can access the semaphore
<em><code>sem</code></em> can use <em><code>sem</code></em> for performing
<code>sem_wait()</code>, <code>sem_trywait()</code>, <code>sem_post()</code>,
and <code>sem_destroy()</code> operations.</p>
</blockquote>
<p>but I guess I don't understand the difference between say 1,2, 10, 25, 50000, etc. I think it is saying that if the value is 0 then the semaphore is not shared. (But then, what is the point?)</p>
<p>How do I appropriately use this <code>pshared</code> parameter?</p>
http://stackoverflow.com/questions/1236480/how-to-know-which-processes-open-use-a-specific-semaphore0How to know which processes open/use a specific semaphore?Daniel2009-08-06T00:57:01Z2009-08-12T13:37:22Z
<p>We have a semaphore opened by 281 processes, is there any way to get all the pids of these processes?</p>
<blockquote>
<p>ipcs -a|grep 67108878</p>
</blockquote>
<p>s 67108878 0xcef73014 --ra-ra---- oracle dba oracle dba 281 17:54:58 9:27:30</p>
http://stackoverflow.com/questions/1242367/correctly-destroying-named-system-v-semaphores0Correctly destroying named System V semaphoresEugene2009-08-07T01:02:26Z2009-08-08T06:29:37Z
<p>I'm using named System V semaphores to lock a file across all my apps on OSX and linux. Not prettiest of APIs by any definition.</p>
<p>It seems to work, but I can't quite figure out how to properly destroy the semaphore after everybody is done with it.</p>
<p>General logic is like this:</p>
<p><strong>Creating:</strong></p>
<p>[1] Thread or process tries to open a semaphore set with key_t created for the file by ftok(). Set contains 2 semaphores. [2] If semaphore set doesn't exist, it is created with 666 permissions. [3] "Lock" (one of the semaphores) set into released state (value 1). [4] "Reference count" (another semaphore in the same set) is incremented.</p>
<p><strong>Locking/unlocking:</strong></p>
<p>To lock [5], a thread decrements the value of "Lock" semaphore by 1 (with undo), thus waiting if it is already zero. To unlock [6], thread increments it by one, thus allowing somebody else to lock it.</p>
<p><strong>Destroying:</strong></p>
<p>[7] "Reference count" semaphore is attempted to be decremented (with IPC_NOWAIT flag). [8] Its value is checked to be 0, and if it is [9] semaphore set is destroyed.</p>
<p>(There is also a layer of logic based on thread local storage to make the lock recursive within one thread.)</p>
<p>The questions are: </p>
<ul>
<li>How do I synchronize steps [1] and [2]? (if semaphore set doesn't exist, but while we were counting stars, it was created by somebody else so now creation will fail too)</li>
<li>How do I synchronize steps [4] with [8] so that [9] does not kill me prematurely?</li>
<li>Are there any other race conditions?</li>
</ul>
<p>PS: While POSIX semaphores have much nicer API, I don't think I can survive sem_inlink() behavior as described here:</p>
<blockquote>
<p>Calls to sem_open() to re-create or
re-connect to the semaphore refer to a
new semaphore after sem_unlink() is
called.</p>
</blockquote>
<p>So I will have no way to release them...</p>