DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T p

⟦9a28dd64e⟧ TextFile

    Length: 1594 (0x63a)
    Types: TextFile
    Names: »psapselect.c«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/psap2-lpp/psapselect.c« 

TextFile

/* psapselect.c - PPM: map descriptors */

#ifndef	lint
static char *rcsid = "$Header: /f/osi/psap2-lpp/RCS/psapselect.c,v 7.0 89/11/23 22:16:02 mrose Rel $";
#endif

/* 
 * $Header: /f/osi/psap2-lpp/RCS/psapselect.c,v 7.0 89/11/23 22:16:02 mrose Rel $
 *
 * Contributed by The Wollongong Group, Inc.
 *
 *
 * $Log:	psapselect.c,v $
 * Revision 7.0  89/11/23  22:16:02  mrose
 * Release 6.0
 * 
 */

/*
 *				  NOTICE
 *
 *    Acquisition, use, and distribution of this module and related
 *    materials are subject to the restrictions of a license agreement.
 *    Consult the Preface in the User's Manual for the full terms of
 *    this agreement.
 *
 */


/* LINTLIBRARY */

#include <stdio.h>
#include <signal.h>
#define	LPP
#include "ppkt.h"

/* \f

   map presentation descriptors for select() */

int	PSelectMask (sd, mask, nfds, pi)
int	sd;
fd_set *mask;
int    *nfds;
struct PSAPindication *pi;
{
    SBV     smask;
    int	    reason,
	    result;
    register struct psapblk *pb;

    missingP (mask);
    missingP (nfds);
    missingP (pi);

    smask = sigioblock ();

    if ((pb = findpblk (sd)) == NULL) {
	(void) sigiomask (smask);
	return psaplose (pi, PC_PARAMETER, NULLCP,
			    "invalid presentation descriptor");
    }

    result = pb -> pb_checkfnx ? (*pb -> pb_checkfnx) (pb, pi) : OK;
    if (result == NOTOK && (reason = pi -> pi_abort.pa_reason) != PC_TIMER) {
	if (PC_FATAL (reason))
	    freepblk (pb);
    }
    else {
	FD_SET (pb -> pb_fd, mask);
	if (pb -> pb_fd > *nfds)
	    *nfds = pb -> pb_fd + 1;
    }

    (void) sigiomask (smask);

    return result;
}