Jump to content

Shared Variables in SC_THREAD


ashwathgan

Recommended Posts

Hi all

 

If I have something like follows:

SC_MODULE(Test)

{

...

 

int t1; // Want this variable to be shared

 

void  tesst()

{

 

t1 = t1 +2;

 

}

 

SC_CTOR(Test)

{

SC_THREAD(tesst)

}

 

 

 

And then I create two instances of Test as 

 

Test *t1 =  new ....;

Test *t2 = new ...

 

 

 

 

Then , how can make the varible "t1"shared by both the instances/ threads?

 

 

In other words, I want this variable to be updated by both the threads.

 

 

 

 

 

 

 

 

Thanks

Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...