ftp.nice.ch/pub/next/connectivity/protocol/GateKeeper.3.0.Beta.4.s.tar.gz#/GateKeeper.3.0.Beta.4.s/ppp/NeXT/bpf/bpf_compat.h

This is bpf_compat.h in view mode; [Download] [Up]

/*
 * Copyright (c) 1992 Regents of the University of California.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms are permitted
 * provided that the above copyright notice and this paragraph are
 * duplicated in all such forms and that any documentation,
 * advertising materials, and other materials related to such
 * distribution and use acknowledge that the software was developed
 * by the University of California, Lawrence Berkeley Laboratory,
 * Berkeley, CA.  The name of the University may not be used to
 * endorse or promote products derived from this software without
 * specific prior written permission.
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 *
 * @(#) $Header: /Users/perkins/ppp/source_repository/ppp-2.3b3/NeXT/bpf/bpf_compat.h,v 1.2 1996/10/08 00:16:45 perkins Exp $ (LBL)
 */

/*
 * Some hacks for compatibility across SunOS and 4.4BSD.  We emulate
 * malloc and free with mbuf clusters.  We store a pointer to
 * the mbuf in the first word of the mbuf and return 8 bytes
 * passed the start of data (for double word alignment).
 * We cannot just use offsets because clusters are not at a fixed
 * offset from the associated mbuf.  Sorry for this kludge.
 */

#if defined(NeXT)
#define MRKLEN 4
#define BPFmalloc(size, type, canwait) bpf_alloc(size, canwait);
#define BPFfree(cp, type) kfree((cp - 4), (*(int *)(cp - 4)))
#define M_WAITOK M_WAIT

#ifndef IOLog
#define IOLog printf
#endif

#else
#define BPFmalloc(size, type, canwait) bpf_alloc(size, canwait)
#define BPFfree(cp, type) m_free(*(struct mbuf **)(cp - 8))
#define M_WAITOK M_WAIT
/* This mapping works for our purposes. */
#define ERESTART EINTR
#endif

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.