Updated: October 28, 2024 |
Process a message again in a resource manager
#include <sys/iofunc.h> #include <sys/resmgr.h> int resmgr_msg_again( resmgr_context_t *ctp, int rcvid);
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The resmgr_msg_again() function reprocesses the message corresponding to the given rcvid. It does this by:
You use this function if your resource manager can't process a message right away. For example, if a read operation is blocked, your io_read handler would save the rcvid of the request, and then return _RESMGR_NOREPLY, leaving the client blocked. Later, when the resource manager can handle the request, it can call resmgr_msg_again() to reprocess the message.
The resmgr_msg_again() function overwrites the ctp with data and state information of the message you want to process again. If you use this function in any callback other than a pulse handler, then further processing behaviour can be undefined. To proceed without resulting in undefined behaviour, provide a clean ctp allocated with a call to dispatch_context_alloc(); then free the dispatch context by calling dispatch_context_free() with the new ctp.
Furthermore, the function processes the new message in the context of the current thread. If the current thread holds any mutexes or other synchronization objects that are not relockable by the calling thread, this can result in self-deadlock or other failures.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |