sys.h
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:7k
开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
  3.  * All rights reserved. 
  4.  * 
  5.  * Redistribution and use in source and binary forms, with or without modification, 
  6.  * are permitted provided that the following conditions are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright notice,
  9.  *    this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright notice,
  11.  *    this list of conditions and the following disclaimer in the documentation
  12.  *    and/or other materials provided with the distribution.
  13.  * 3. The name of the author may not be used to endorse or promote products
  14.  *    derived from this software without specific prior written permission. 
  15.  *
  16.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
  17.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
  18.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
  19.  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
  20.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
  21.  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
  22.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
  23.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
  24.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
  25.  * OF SUCH DAMAGE.
  26.  *
  27.  * This file is part of the lwIP TCP/IP stack.
  28.  * 
  29.  * Author: Adam Dunkels <adam@sics.se>
  30.  *
  31.  */
  32. #ifndef __LWIP_SYS_H__
  33. #define __LWIP_SYS_H__
  34. //#include "arch/cc.h"
  35. #include "lwip/opt.h"
  36. typedef u8_t sys_sem_t;
  37. typedef u8_t sys_mbox_t;
  38. typedef u32_t mem_ptr_t;
  39. #if NO_SYS
  40. /* For a totally minimal and standalone system, we provide null
  41.    definitions of the sys_ functions. */
  42. //typedef u8_t sys_sem_t;
  43. //typedef u8_t sys_mbox_t;
  44. //struct sys_timeout {u8_t dummy;};
  45. #define sys_init()
  46. #define sys_timeout(m,h,a)
  47. #define sys_untimeout(m,a)
  48. #define sys_sem_new(c) c
  49. #define sys_sem_signal(s)
  50. #define sys_sem_wait(s)
  51. #define sys_sem_free(s)
  52. #define sys_mbox_new() 0
  53. #define sys_mbox_fetch(m,d)
  54. #define sys_mbox_post(m,d)
  55. #define sys_mbox_free(m)
  56. #define sys_thread_new(t,a,p)
  57. #else /* NO_SYS */
  58. #define sys_sem_new(c) c
  59. #define sys_sem_wait(s)
  60. #define sys_sem_signal(s)
  61. //#include "arch/sys_arch.h"
  62. /** Return code for timeouts from sys_arch_mbox_fetch and sys_arch_sem_wait */
  63. #define SYS_ARCH_TIMEOUT 0xffffffff
  64. typedef void (* sys_timeout_handler)(void *arg);
  65. //#define sys_timeout_handler void (* timeout)(void *arg);
  66. /*Begin:Modified by zhouzhigang40410 2005.01.17*/
  67. /*struct sys_timeout {
  68.   struct sys_timeout *next;
  69.   u32_t time;
  70.   sys_timeout_handler h;
  71.   void *arg;
  72. };*/
  73. typedef struct  
  74. {
  75.     sys_timeout_handler h;
  76.     void *arg;
  77.     u32_t ms_time;
  78. }sys_timeout;
  79.   #define TCP_TIMER_START(t, f, a)      sys_timer_start((t), (f), (a))
  80.   #define TCP_TIMER_STOP(f, a)     sys_timer_stop((f), (a))
  81. /*End:Modified by zhouzhigang40410 2005.01.17*/
  82. #ifndef MAX_SYS_TIMER
  83. #define MAX_SYS_TIMER 3
  84. #endif
  85. /*struct sys_timeouts {
  86.   struct sys_timeout *next;
  87. };*/
  88. /* sys_init() must be called before anthing else. */
  89. void sys_init(void);
  90. /*
  91.  * sys_timeout():
  92.  *
  93.  * Schedule a timeout a specified amount of milliseconds in the
  94.  * future. When the timeout occurs, the specified timeout handler will
  95.  * be called. The handler will be passed the "arg" argument when
  96.  * called.
  97.  *
  98.  */
  99. //extern sys_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
  100. //extern sys_untimeout(sys_timeout_handler h, void *arg);
  101. //struct sys_timeouts *sys_arch_timeouts(void);
  102. /* Semaphore functions. */
  103. #if 0
  104. sys_sem_t sys_sem_new(u8_t count);
  105. void sys_sem_signal(sys_sem_t sem);
  106. u32_t sys_arch_sem_wait(sys_sem_t sem, u32_t timeout);
  107. void sys_sem_free(sys_sem_t sem);
  108. void sys_sem_wait(sys_sem_t sem);
  109. int sys_sem_wait_timeout(sys_sem_t sem, u32_t timeout);
  110. #endif
  111. /* Time functions. */
  112. #ifndef sys_msleep
  113. void sys_msleep(u32_t ms); /* only has a (close to) 1 jiffy resolution. */
  114. #endif
  115. #ifndef sys_jiffies
  116. extern u32_t sys_jiffies(void); /* since power up. */
  117. #endif
  118. #if 0
  119. /* Mailbox functions. */
  120. sys_mbox_t sys_mbox_new(void);
  121. void sys_mbox_post(sys_mbox_t mbox, void *msg);
  122. u32_t sys_arch_mbox_fetch(sys_mbox_t mbox, void **msg, u32_t timeout);
  123. void sys_mbox_free(sys_mbox_t mbox);
  124. void sys_mbox_fetch(sys_mbox_t mbox, void **msg);
  125. #endif
  126. /* Thread functions. */
  127. //sys_thread_t sys_thread_new(void (* thread)(void *arg), void *arg, int prio);
  128. /* The following functions are used only in Unix code, and
  129.    can be omitted when porting the stack. */
  130. /* Returns the current time in microseconds. */
  131. unsigned long sys_now(void);
  132. #endif /* NO_SYS */
  133. /* Critical Region Protection */
  134. /* These functions must be implemented in the sys_arch.c file.
  135.    In some implementations they can provide a more light-weight protection
  136.    mechanism than using semaphores. Otherwise semaphores can be used for
  137.    implementation */
  138. #ifndef SYS_ARCH_PROTECT
  139. /** SYS_LIGHTWEIGHT_PROT
  140.  * define SYS_LIGHTWEIGHT_PROT in lwipopts.h if you want inter-task protection
  141.  * for certain critical regions during buffer allocation, deallocation and memory
  142.  * allocation and deallocation.
  143.  */
  144. #if SYS_LIGHTWEIGHT_PROT
  145. /** SYS_ARCH_DECL_PROTECT
  146.  * declare a protection variable. This macro will default to defining a variable of
  147.  * type sys_prot_t. If a particular port needs a different implementation, then
  148.  * this macro may be defined in sys_arch.h.
  149.  */
  150. #define SYS_ARCH_DECL_PROTECT(lev) sys_prot_t lev
  151. /** SYS_ARCH_PROTECT
  152.  * Perform a "fast" protect. This could be implemented by
  153.  * disabling interrupts for an embedded system or by using a semaphore or
  154.  * mutex. The implementation should allow calling SYS_ARCH_PROTECT when
  155.  * already protected. The old protection level is returned in the variable
  156.  * "lev". This macro will default to calling the sys_arch_protect() function
  157.  * which should be implemented in sys_arch.c. If a particular port needs a
  158.  * different implementation, then this macro may be defined in sys_arch.h
  159.  */
  160. #define SYS_ARCH_PROTECT(lev) lev = sys_arch_protect()
  161. /** SYS_ARCH_UNPROTECT
  162.  * Perform a "fast" set of the protection level to "lev". This could be
  163.  * implemented by setting the interrupt level to "lev" within the MACRO or by
  164.  * using a semaphore or mutex.  This macro will default to calling the
  165.  * sys_arch_unprotect() function which should be implemented in
  166.  * sys_arch.c. If a particular port needs a different implementation, then
  167.  * this macro may be defined in sys_arch.h
  168.  */
  169. #define SYS_ARCH_UNPROTECT(lev) sys_arch_unprotect(lev)
  170. sys_prot_t sys_arch_protect(void);
  171. void sys_arch_unprotect(sys_prot_t pval);
  172. #else
  173. #define SYS_ARCH_DECL_PROTECT(lev)
  174. #define SYS_ARCH_PROTECT(lev)
  175. #define SYS_ARCH_UNPROTECT(lev)
  176. #endif /* SYS_LIGHTWEIGHT_PROT */
  177. #endif /* SYS_ARCH_PROTECT */
  178. #endif /* __LWIP_SYS_H__ */