[Previous] [Contents] [Next]

resmgr_ocb()

Retrieve a context blocker @@@

Synopsis:

#include <sys/resmgr.h>

void * resmgr_ocb( resmgr_context_t * ctp, 
                   struct _msg_info * info);

Library:

libc

Description:

The resmgr_ocb() function queries the internal resource manager database (which maps client connections to server ocbs(@@@what?)) and retrieves the open context block pointer that was bound using resmgr_open_bind(). The info structure contains client mapping information. (@@@MsgInfo & the rcvid don't seem directly relevant here =>"The info structure should be filled in with the information about which client mapping to retrieve by using the MsgInfo() with the appropriate client rcvid.") @@@ctp info

Returns:

The matching binding, or NULL if the binding can't be found or an error occurred.

Errors:

ESRCH
The connection can't be located in the resource manager table.
ENOMEM
There is no memory available for the operation.
EINVAL
Invalid arguments were used.

Classification:

@@@NONE

Safety:
Cancellation point No
Interrupt handler No
Signal handler No
Thread No

See also:


[Previous] [Contents] [Next]