473,587 Members | 2,447 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

semaphore

Hai,
I'm new to multithread programming. Now has some doubt on it. Hope anybody
can help.

How do use the semphore?

Thanks
Jul 19 '05 #1
3 23386
"chiew peng" <li**********@i wow.com.sg> wrote...
I'm new to multithread programming. Now has some doubt on it. Hope anybody can help.

How do use the semphore?


A semaphore is a global variable with two (rarely more) known
states. Threads can gain access to semaphores using some king
of OS mechanism and check the states of the semaphores. But
since C++ doesn't define semaphores, they are off-topic here.

The best place to ask is comp.programmin g.threads.

Victor
Jul 19 '05 #2
Ok, anyway thanks!

"Victor Bazarov" <v.********@att Abi.com> wrote in message
news:9_******** *********@rwcrn sc51.ops.asp.at t.net...
"chiew peng" <li**********@i wow.com.sg> wrote...
I'm new to multithread programming. Now has some doubt on it. Hope

anybody
can help.

How do use the semphore?


A semaphore is a global variable with two (rarely more) known
states. Threads can gain access to semaphores using some king
of OS mechanism and check the states of the semaphores. But
since C++ doesn't define semaphores, they are off-topic here.

The best place to ask is comp.programmin g.threads.

Victor

Jul 19 '05 #3

Victor Bazarov wrote:

"chiew peng" <li**********@i wow.com.sg> wrote...
I'm new to multithread programming. Now has some doubt on it. Hope anybody
can help.

How do use the semphore?


A semaphore is a global variable with two (rarely more) known
states. Threads can gain access to semaphores using some king
of OS mechanism and check the states of the semaphores. But
since C++ doesn't define semaphores, they are off-topic here.


They are brain-damaged (as far as THREADING is concerned).

The best place to ask is comp.programmin g.threads.
<Forward Inline>

-------- Original Message --------
Newsgroups: comp.programmin g.threads
Subject: Re: semaphore

chiew peng wrote:
Hi,
I'm new to multithread programming. Now has some doubt on it. Hope anybody
can help.

How do use the semphore?
http://terekhov.de/downey03semaphores.pdf
(The Little Book of Semaphores, Copyright (C) 2003 Allen B. Downey)

Now, check out this thread (please follow the embedded links):

http://www.mail-archive.com/bo***@li.../msg07826.html
(Subject: [boost] no semaphores in boost::thread)

Try to NOT miss the following msgs of mine... I'll copy&paste only one
of them below:

http://www.mail-archive.com/bo***@li.../msg07506.html
http://www.mail-archive.com/bo***@li.../msg07519.html
http://www.mail-archive.com/bo***@li.../msg08431.html

Maciej Sobczak wrote:
[...] What about providing both (condvars and semas), but with documenting
known pros and cons?


Personally, I'd have no problems with some *separate* Boost.Semas (for
things meant to be done by the current POSIX/IPC semaphores: async-
signal-safe unlock operation, memory-isolated synchronization ) library
with the "attached sticker" ala "Intergalac tic Surgeon General's
Warning: DON'T USE IT FOR THREADING!" (or something like that). Well,
that would actually fit rather nicely into "The POSIX++ Vision". ;-)

regards,
alexander.

--
http://terekhov.de/your-next-book
Jul 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
4345
by: Bastian Hammer | last post by:
Hi I´m wondering why there are so few examples with Semaphore. Is it obsolete? I´ve got a Class Data. It offers 2 Threads methods for updating, editing, .. a private dictionary. Now I have to make sure, that both threads are synchronal,
0
3897
by: dede | last post by:
Dear community, having written a working example for using Semphores on a windows client, I created a little "server-application" that does the following: A Server continously "listens/tails" a command-file for new commands. If a new commands arrives a split of the workload to threads is under- taken that "control themselves" via Semaphore and are joined finally. It works.
1
2636
by: rushik | last post by:
Hello all, I m facing an interesting problem related to semaphore in php. We are using a huge business application running on LAMP. For database operations we are maintaining centralized DB manager classes in php which perform all the single table related activity. Before inserting new record we are acquiring semaphore on specific key (all the tables are having seprate sem keys), insert the record and release the semaphore.
5
4597
by: marvind | last post by:
I tried using a Semaphore class (have included the full listing reproduced from article Figure 1 at the end of this email) in .NET 1.1. It works fine most of the time, however, I see the following error occassionally: 08/28/2005 17:32:42.82, Verbose, QueryObject.MergeSubQuery, Exception: Too many posts were made to a semaphore in mscorlib. Server stack trace:
5
2512
by: Unni | last post by:
Hello all, I m facing a memory related problem with semaphores. Our business application uses semaphores extensively and the limit imposed by the OS on the number of semaphores that can exist on the system is only 128. This could be increased to a higher value but that would not be a permanant solution to my belief. We are using the sem_get, sem_acquire php functions. After the use we are releasing the semaphore by using sem_release.
2
2134
by: techi_C | last post by:
Hi I'm getting a problem while removing semaphore from system. Before removing semaphore I'm checking the usage count of a smaphore. // checking usage count usage_count = semctl(sem_ptr->semid, 1, GETVAL, NULL); if( usage_count 1 ) // return don't remove semaphore else
1
2265
by: cranfic | last post by:
Please help... To make it simple, I have a simple test C program which calls my semphore library functions only. (It doesn't call any db2 function at all). And the following is the test program: #include "hasem.h" #include <semaphore.h> #include <stdio.h>
0
959
by: sukasa | last post by:
Greetings. After first noticing a malfunction in my application, I ran some tests which have given me the following insights on the code performance: -The " infinite" loop which waits on the semaphore first thing in every iteration, may succeed in going through several iterations. -The number of successful iterations may differ with every execution, as well as with timing differences caused by the different placement of breakpoints. ...
0
2240
by: Samuel R. Neff | last post by:
I'm having trouble creating a Semaphore with read-access rights for everyone. Originally I was trying to use this code: semaphore = new Semaphore(maxLocks, maxLocks, "RwLock#" + name); but when using that code to create a Semaphore instance for an existing system semaphore (i.e., the second time the code gets hit), I get an UnauthorizedAccessException. So I tried specifying that everyone has read rights:
5
2717
by: GHUM | last post by:
hello, in my application I am using hSem = win32event.CreateSemaphore (None, 1, 1,"stringincludinginterfaceandport") rt=win32event.WaitForSingleObject (hSem, 0) if rt != win32event.WAIT_TIMEOUT: really_do_start_my_app() else:
0
8349
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8221
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6629
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5722
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5395
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3845
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2364
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1455
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1192
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.