local fork (temporary)

Dependents:   VodafoneUSBModem_bleedingedge2

Fork of lwip-sys by mbed official

Committer:
mbed_official
Date:
Fri Jun 22 09:35:28 2012 +0000
Revision:
0:762278923909
Child:
6:2ace1ff71ae6
Initial commit of the lwip operating system abstraction layer implementation based on CMSIS-RTOS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 0:762278923909 1 /*
mbed_official 0:762278923909 2 * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
mbed_official 0:762278923909 3 * All rights reserved.
mbed_official 0:762278923909 4 *
mbed_official 0:762278923909 5 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 0:762278923909 6 * are permitted provided that the following conditions are met:
mbed_official 0:762278923909 7 *
mbed_official 0:762278923909 8 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 0:762278923909 9 * this list of conditions and the following disclaimer.
mbed_official 0:762278923909 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 0:762278923909 11 * this list of conditions and the following disclaimer in the documentation
mbed_official 0:762278923909 12 * and/or other materials provided with the distribution.
mbed_official 0:762278923909 13 * 3. The name of the author may not be used to endorse or promote products
mbed_official 0:762278923909 14 * derived from this software without specific prior written permission.
mbed_official 0:762278923909 15 *
mbed_official 0:762278923909 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
mbed_official 0:762278923909 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
mbed_official 0:762278923909 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
mbed_official 0:762278923909 19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
mbed_official 0:762278923909 20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
mbed_official 0:762278923909 21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
mbed_official 0:762278923909 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
mbed_official 0:762278923909 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
mbed_official 0:762278923909 24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
mbed_official 0:762278923909 25 * OF SUCH DAMAGE.
mbed_official 0:762278923909 26 *
mbed_official 0:762278923909 27 * This file is part of the lwIP TCP/IP stack.
mbed_official 0:762278923909 28 *
mbed_official 0:762278923909 29 * Author: Adam Dunkels <adam@sics.se>
mbed_official 0:762278923909 30 *
mbed_official 0:762278923909 31 */
mbed_official 0:762278923909 32 #ifndef __PERF_H__
mbed_official 0:762278923909 33 #define __PERF_H__
mbed_official 0:762278923909 34
mbed_official 0:762278923909 35 #define PERF_START /* null definition */
mbed_official 0:762278923909 36 #define PERF_STOP(x) /* null definition */
mbed_official 0:762278923909 37
mbed_official 0:762278923909 38 #endif /* __PERF_H__ */