head 1.1; branch 1.1.1; access; symbols SFIO_1999:1.1.1.1 SFIO_1998:1.1.1.1 ATT:1.1.1; locks; strict; comment @ * @; 1.1 date 98.03.19.16.27.51; author rse; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 98.03.19.16.27.51; author rse; state Exp; branches; next ; desc @@ 1.1 log @Initial revision @ text @#include "sfdchdr.h" /* Make a stream op return immediately on interrupts. ** This is useful on slow streams (hence the name). ** ** Written by Glenn Fowler (03/18/1998). */ #if __STD_C static int slowexcept(Sfio_t* f, int type, Void_t* v, Sfdisc_t* disc) #else static int slowexcept(f, type, v, disc) Sfio_t* f; int type; Void_t* v; Sfdisc_t* disc; #endif { NOTUSED(f); NOTUSED(v); NOTUSED(disc); switch (type) { case SF_FINAL: case SF_DPOP: free(disc); break; case SF_READ: case SF_WRITE: if (errno == EINTR) return(-1); break; } return(0); } #if __STD_C int sfdcslow(Sfio_t* f) #else int sfdcslow(f) Sfio_t* f; #endif { Sfdisc_t* disc; if(!(disc = (Sfdisc_t*)malloc(sizeof(Sfdisc_t))) ) return(-1); disc->readf = NIL(Sfread_f); disc->writef = NIL(Sfwrite_f); disc->seekf = NIL(Sfseek_f); disc->exceptf = slowexcept; if(sfdisc(f,disc) != disc) { free(disc); return(-1); } return(0); } @ 1.1.1.1 log @Import of Sfio1998 @ text @@