Deleted Added
full compact
ev_streams.c (156956) ev_streams.c (170244)
1/*
2 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (c) 1996-1999 by Internet Software Consortium
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *

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

15 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18/* ev_streams.c - implement asynch stream file IO for the eventlib
19 * vix 04mar96 [initial]
20 */
21
22#if !defined(LINT) && !defined(CODECENTER)
1/*
2 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (c) 1996-1999 by Internet Software Consortium
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *

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

15 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18/* ev_streams.c - implement asynch stream file IO for the eventlib
19 * vix 04mar96 [initial]
20 */
21
22#if !defined(LINT) && !defined(CODECENTER)
23static const char rcsid[] = "$Id: ev_streams.c,v 1.2.206.2 2004/03/17 00:29:51 marka Exp $";
23static const char rcsid[] = "$Id: ev_streams.c,v 1.4.18.1 2005/04/27 05:01:06 sra Exp $";
24#endif
25#include <sys/cdefs.h>
24#endif
25#include <sys/cdefs.h>
26__FBSDID("$FreeBSD: head/lib/libc/isc/ev_streams.c 156956 2006-03-21 15:37:16Z ume $");
26__FBSDID("$FreeBSD: head/lib/libc/isc/ev_streams.c 170244 2007-06-03 17:20:27Z ume $");
27
28#include "port_before.h"
29#ifndef _LIBC
30#include "fd_setsize.h"
31#endif
32
33#include <sys/types.h>
34#include <sys/uio.h>

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

309 str->ioErrno = errno;
310 }
311 }
312 }
313 if (str->ioDone <= 0 || str->ioDone == str->ioTotal)
314 done(opaqueCtx, str);
315}
316#endif
27
28#include "port_before.h"
29#ifndef _LIBC
30#include "fd_setsize.h"
31#endif
32
33#include <sys/types.h>
34#include <sys/uio.h>

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

309 str->ioErrno = errno;
310 }
311 }
312 }
313 if (str->ioDone <= 0 || str->ioDone == str->ioTotal)
314 done(opaqueCtx, str);
315}
316#endif
317
318/*! \file */