Deleted Added
full compact
svc.c (22993) svc.c (26221)
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *

--- 16 unchanged lines hidden (view full) ---

25 * Sun Microsystems, Inc.
26 * 2550 Garcia Avenue
27 * Mountain View, California 94043
28 */
29
30#if defined(LIBC_SCCS) && !defined(lint)
31/*static char *sccsid = "from: @(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";*/
32/*static char *sccsid = "from: @(#)svc.c 2.4 88/08/11 4.0 RPCSRC";*/
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *

--- 16 unchanged lines hidden (view full) ---

25 * Sun Microsystems, Inc.
26 * 2550 Garcia Avenue
27 * Mountain View, California 94043
28 */
29
30#if defined(LIBC_SCCS) && !defined(lint)
31/*static char *sccsid = "from: @(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";*/
32/*static char *sccsid = "from: @(#)svc.c 2.4 88/08/11 4.0 RPCSRC";*/
33static char *rcsid = "$Id$";
33static char *rcsid = "$Id: svc.c,v 1.7 1996/12/30 15:07:33 peter Exp $";
34#endif
35
36/*
37 * svc.c, Server-side remote procedure call interface.
38 *
39 * There are two sets of procedures here. The xprt routines are
40 * for handling transport handles. The svc routines handle the
41 * list of service routines.

--- 354 unchanged lines hidden (view full) ---

396{
397 fd_set readfds;
398
399 FD_ZERO(&readfds);
400 readfds.fds_bits[0] = rdfds;
401 svc_getreqset(&readfds);
402}
403
34#endif
35
36/*
37 * svc.c, Server-side remote procedure call interface.
38 *
39 * There are two sets of procedures here. The xprt routines are
40 * for handling transport handles. The svc routines handle the
41 * list of service routines.

--- 354 unchanged lines hidden (view full) ---

396{
397 fd_set readfds;
398
399 FD_ZERO(&readfds);
400 readfds.fds_bits[0] = rdfds;
401 svc_getreqset(&readfds);
402}
403
404extern void svc_getreqset2(fd_set *, int);
405
406void
407svc_getreqset(readfds)
408 fd_set *readfds;
409{
410 svc_getreqset2(readfds, FD_SETSIZE);
411}
412
413void

--- 83 unchanged lines hidden ---
404void
405svc_getreqset(readfds)
406 fd_set *readfds;
407{
408 svc_getreqset2(readfds, FD_SETSIZE);
409}
410
411void

--- 83 unchanged lines hidden ---