473,385 Members | 1,343 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

'BoundedSemaphore' is not defined

Hi
I am very new to python,In case of using multithreading i want to synchronize all the threads but using
Expand|Select|Wrap|Line Numbers
  1. sem = BoundedSemaphore  
statement i am getting this error.
even i have imported the threading module.
please guide me in locking with a suitable and simple example .

thanx
Sep 19 '07 #1
3 2789
bartonc
6,596 Expert 4TB
Hi
I am very new to python,In case of using multithreading i want to synchronize all the threads but using
Expand|Select|Wrap|Line Numbers
  1. sem = BoundedSemaphore  
statement i am getting this error.
even i have imported the threading module.
please guide me in locking with a suitable and simple example .

thanx
Expand|Select|Wrap|Line Numbers
  1. import threading
  2. maxconnections = 5
  3. ##...
  4. pool_sema = threading.BoundedSemaphore(value=maxconnections)
From 7.5.4.1 Semaphore Example
Sep 19 '07 #2
Expand|Select|Wrap|Line Numbers
  1. import threading
  2. maxconnections = 5
  3. ##...
  4. pool_sema = threading.BoundedSemaphore(value=maxconnections)
From 7.5.4.1 Semaphore Example

Thanx a lot
i agree this was the foolish mistake done by me

but now again there is a problem
1. sem = threading.BoundedSemaphore(1)
2. sem.acquire()
3. fileObj.write(writing)
4. sem.release()

i am trying to write to a file but it just stuck at 3. line number.

is the above code is correct syntactically as well as logically.
please
Sep 19 '07 #3
bartonc
6,596 Expert 4TB
Thanx a lot
i agree this was the foolish mistake done by me

but now again there is a problem
1. sem = threading.BoundedSemaphore(1)
2. sem.acquire()
3. fileObj.write(writing)
4. sem.release()

i am trying to write to a file but it just stuck at 3. line number.

is the above code is correct syntactically as well as logically.
please
Correctness of the above will depend an what precedes it.
Please look to the right hand side of the page when you reply. There you will find "REPLY GUIDELINES". The third item is "Use CODE tags". Following those instructions, paste your actual code (in its entirety or just a more relevant snippet) and we'll see if we can't get you headed in the right directions (odds are, we can). Thanks.
Sep 19 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: Dave | last post by:
Hello all, Please consider this code: #ifndef FOO_INCLUDED #define FOO_INCLUDED // File: foo.h class foo {
2
by: David Emme | last post by:
Access 97 I have a number of SELECT statements which contain references to user-defined VBA functions. These typically work as expected, but occasionally, on one user's machine or another,...
3
by: Leiji Liu | last post by:
Hi, I am curious if there are any pre-defined varables (constants?) in C? I saw some code with __LINE__, __FILE__, etc. Are those located in some include files? LL
19
by: E. Robert Tisdale | last post by:
In the context of the comp.lang.c newsgroup, the term "undefined behavior" actually refers to behavior not defined by the ANSI/ISO C 9 standard. Specifically, it is *not* true that "anything can...
7
by: William L. Bahn | last post by:
I'm working on some lessons and want to be sure I get some stuff correct. If any of this is covered in the FAQ, please feel free to point me to the section - I couldn't find it. ...
6
by: Michael B Allen | last post by:
Which is the preferred method for preprocessor tests and why? #ifdef XYZ or #if XYZ or #if defined(XYZ) and
6
by: karthi | last post by:
hi, I need user defined function that converts string to float in c. since the library function atof and strtod occupies large space in my processor memory I can't use it in my code. regards,...
4
by: Rui.Hu719 | last post by:
Hi, All: I read the following passage from a book: "There are three exceptions to the rule that headers should not contain definitions: classes, const objects whose value is known at compile...
2
by: curious2007 | last post by:
During the linking I get the following: 1>Linking... 1>main.obj : error LNK2005: "double __cdecl sigma(class curious2007::pair<double,double> const &)" (?sigma@@YANABV?$pair@NN@curious2007@@@Z)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.