Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Is a context valid after replying?: (3 Items)
   
Is a context valid after replying?  
I'm using a resource manager implemented with a threadpool/dispatch interface.  When a message is received the dispatch 
interface calls my handler function providing a message context containing a pointer to the data.  Is this data pointer 
valid after a MsgReply is performed on the receive ID?  If so, then I assume the pointer remains valid until the 
callback returns?
Re: Is a context valid after replying?  
Yes, the context remains valid except for _msg_info member becomes meaningless.
Re: Is a context valid after replying?  
Thanks for the clarification.