Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old September 28th, 2006, 02:35 PM
clqrq@yahoo.de
Guest
 
Posts: n/a
Default multithreaded calling of static func

i have just a little question:

guess i have a class with a static function [lets say CA::static()] and
i have different threads running. do i have to expect the problem that
2 treads try to acces CA::static() at the same time or does the
processor always make shure that one of them has to wait till the other
finishes? or may it be that a static func can be executed twice at the
same time? or should i implement something like:

bool CA::fInUse = false;

CA::static() {
while (fInUse) ;
fInUse = true;
// do something //
fInUse = false;
}

  #2  
Old September 28th, 2006, 02:45 PM
Rolf Magnus
Guest
 
Posts: n/a
Default Re: multithreaded calling of static func

clqrq@yahoo.de wrote:
Quote:
i have just a little question:
>
guess i have a class with a static function [lets say CA::static()]
That wouldn't be a valid name.
Quote:
and i have different threads running. do i have to expect the problem that
2 treads try to acces CA::static() at the same time or does the
processor always make shure that one of them has to wait till the other
finishes? or may it be that a static func can be executed twice at the
same time?
Standard C++ doesn't cover threads, so it depends on the implementation.
Quote:
or should i implement something like:
>
bool CA::fInUse = false;
>
CA::static() {
while (fInUse) ;
fInUse = true;
// do something //
fInUse = false;
}
This is probably not enough.

  #3  
Old September 28th, 2006, 02:45 PM
Victor Bazarov
Guest
 
Posts: n/a
Default Re: multithreaded calling of static func

clqrq@yahoo.de wrote:
Quote:
i have just a little question:
>
guess i have a class with a static function [lets say CA::static()]
and i have different threads running. do i have to expect the problem
that 2 treads try to acces CA::static() at the same time or does the
processor always make shure that one of them has to wait till the
other finishes? or may it be that a static func can be executed twice
at the same time? or should i implement something like:
>
bool CA::fInUse = false;
>
CA::static() {
while (fInUse) ;
fInUse = true;
// do something //
fInUse = false;
}
First of all, let me mention that threading is not part of C++ language
and because of that discussions on threads are generally off-topic here.
Try comp.programming.threads. But here is a couple of thoughts:

If you have to ask, it's time for you to study those things seriously.
Threading cannot be explained in a single newsgroup posting, please
refer to 'comp.programming.threads' and their recommendation of books
and start systematic learning of it.

Functions can be called from different threads, it's the *data* that
should concern you. Access to data often has to be paid the most
attention to. To simplify it: two threads should not attempt to write
to the same memory area "at the same time". Nor one should read while
the other one is writing. Doing those things causes trouble.

How to protect things from being screwed up in a multithreaded program,
you need to learn. It can be done from books. It can be done on the
'Net It can be "picked up" by reading documentation and looking at
somebody else's code, but that usually leads to forming serious
misconceptions which are difficult (though necessary) to un-learn later.
So, make THE RIGHT CHOICE(tm).

Good luck!

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


  #4  
Old September 29th, 2006, 03:55 AM
Martin Steen
Guest
 
Posts: n/a
Default Re: multithreaded calling of static func

clqrq@yahoo.de wrote:
Quote:
i have just a little question:
>
guess i have a class with a static function [lets say CA::static()] and
i have different threads running. do i have to expect the problem that
2 treads try to acces CA::static() at the same time
Yes.
Quote:
or does the
processor always make shure that one of them has to wait till the other
finishes?
No.
Quote:
or may it be that a static func can be executed twice at the
same time?
Yes. It may be. But that's no problem as long as you don't use static or
global variables. Functions that only use local variables are called
"thread-safe".

Quote:
>or should i implement something like:
>
bool CA::fInUse = false;
better:
volatile bool CA::fInUse = false;
Quote:
>
CA::static() {
while (fInUse) ;
fInUse = true;
// do something //
fInUse = false;
}
This might work, but of all solutions one can imagine, this
is the worst (the wait-loop would consume about 100% CPU-time).

If a multithreaded function accesses a non-local
object (e.g. a class-member or global/static objects),
you need to manage the access.
In a Windows-Enviroment this can be done by using Events
(CreateEvent, WaitForSingleObject).

Best regards, Martin




 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles