[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]

Technical Reference: Communications, Volume 1


svc_getreqset Subroutine

Purpose

Services a Remote Procedure Call (RPC) request.

Library

C Library (libc.a)

Syntax

#include <sys/types.h>
#include <sys/select.h>
#include <rpc/rpc.h>


void svc_getreqset ( rdfds)
fd_set *rdfds;

Description

The svc_getreqset subroutine is only used if a service implementor does not call the svc_run subroutine, but instead implements custom asynchronous event processing. The subroutine is called when the select subroutine has determined that an RPC request has arrived on any RPC sockets. The svc_getreqset subroutine returns when all sockets associated with the value specified by the rdfds parameter have been serviced.

Parameters


rdfds Specifies the resultant read-file descriptor bit mask.

Implementation Specifics

This subroutine is part of Base Operating System (BOS) Runtime.

Related Information

The select subroutine, svc_run subroutine.

List of RPC Programming References.

Remote Procedure Call (RPC) Overview for Programming and Sockets Overview in AIX 5L Version 5.1 Communications Programming Concepts.


[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]