Netservices modded to read fragmented HTTP respsonse/payload from special purpose server - 180 bytes only

Committer:
RodColeman
Date:
Thu Sep 08 10:48:09 2011 +0000
Revision:
0:850eacf3e945
revised fixed length to 178 bytes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
RodColeman 0:850eacf3e945 1 /*
RodColeman 0:850eacf3e945 2 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
RodColeman 0:850eacf3e945 3 * All rights reserved.
RodColeman 0:850eacf3e945 4 *
RodColeman 0:850eacf3e945 5 * Redistribution and use in source and binary forms, with or without modification,
RodColeman 0:850eacf3e945 6 * are permitted provided that the following conditions are met:
RodColeman 0:850eacf3e945 7 *
RodColeman 0:850eacf3e945 8 * 1. Redistributions of source code must retain the above copyright notice,
RodColeman 0:850eacf3e945 9 * this list of conditions and the following disclaimer.
RodColeman 0:850eacf3e945 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
RodColeman 0:850eacf3e945 11 * this list of conditions and the following disclaimer in the documentation
RodColeman 0:850eacf3e945 12 * and/or other materials provided with the distribution.
RodColeman 0:850eacf3e945 13 * 3. The name of the author may not be used to endorse or promote products
RodColeman 0:850eacf3e945 14 * derived from this software without specific prior written permission.
RodColeman 0:850eacf3e945 15 *
RodColeman 0:850eacf3e945 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
RodColeman 0:850eacf3e945 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
RodColeman 0:850eacf3e945 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
RodColeman 0:850eacf3e945 19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
RodColeman 0:850eacf3e945 20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
RodColeman 0:850eacf3e945 21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
RodColeman 0:850eacf3e945 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
RodColeman 0:850eacf3e945 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
RodColeman 0:850eacf3e945 24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
RodColeman 0:850eacf3e945 25 * OF SUCH DAMAGE.
RodColeman 0:850eacf3e945 26 *
RodColeman 0:850eacf3e945 27 * This file is part of the lwIP TCP/IP stack.
RodColeman 0:850eacf3e945 28 *
RodColeman 0:850eacf3e945 29 * Author: Adam Dunkels <adam@sics.se>
RodColeman 0:850eacf3e945 30 *
RodColeman 0:850eacf3e945 31 */
RodColeman 0:850eacf3e945 32 #ifndef __LWIP_SYS_H__
RodColeman 0:850eacf3e945 33 #define __LWIP_SYS_H__
RodColeman 0:850eacf3e945 34
RodColeman 0:850eacf3e945 35 #include "lwip/opt.h"
RodColeman 0:850eacf3e945 36
RodColeman 0:850eacf3e945 37 #ifdef __cplusplus
RodColeman 0:850eacf3e945 38 extern "C" {
RodColeman 0:850eacf3e945 39 #endif
RodColeman 0:850eacf3e945 40
RodColeman 0:850eacf3e945 41 #if NO_SYS
RodColeman 0:850eacf3e945 42
RodColeman 0:850eacf3e945 43 /* For a totally minimal and standalone system, we provide null
RodColeman 0:850eacf3e945 44 definitions of the sys_ functions. */
RodColeman 0:850eacf3e945 45 typedef u8_t sys_sem_t;
RodColeman 0:850eacf3e945 46 typedef u8_t sys_mutex_t;
RodColeman 0:850eacf3e945 47 typedef u8_t sys_mbox_t;
RodColeman 0:850eacf3e945 48
RodColeman 0:850eacf3e945 49 #define sys_sem_new(s, c) ERR_OK
RodColeman 0:850eacf3e945 50 #define sys_sem_signal(s)
RodColeman 0:850eacf3e945 51 #define sys_sem_wait(s)
RodColeman 0:850eacf3e945 52 #define sys_arch_sem_wait(s,t)
RodColeman 0:850eacf3e945 53 #define sys_sem_free(s)
RodColeman 0:850eacf3e945 54 #define sys_mutex_new(mu) ERR_OK
RodColeman 0:850eacf3e945 55 #define sys_mutex_lock(mu)
RodColeman 0:850eacf3e945 56 #define sys_mutex_unlock(mu)
RodColeman 0:850eacf3e945 57 #define sys_mutex_free(mu)
RodColeman 0:850eacf3e945 58 #define sys_mbox_new(m, s) ERR_OK
RodColeman 0:850eacf3e945 59 #define sys_mbox_fetch(m,d)
RodColeman 0:850eacf3e945 60 #define sys_mbox_tryfetch(m,d)
RodColeman 0:850eacf3e945 61 #define sys_mbox_post(m,d)
RodColeman 0:850eacf3e945 62 #define sys_mbox_trypost(m,d)
RodColeman 0:850eacf3e945 63 #define sys_mbox_free(m)
RodColeman 0:850eacf3e945 64
RodColeman 0:850eacf3e945 65 #define sys_thread_new(n,t,a,s,p)
RodColeman 0:850eacf3e945 66
RodColeman 0:850eacf3e945 67 #define sys_msleep(t)
RodColeman 0:850eacf3e945 68
RodColeman 0:850eacf3e945 69 #else /* NO_SYS */
RodColeman 0:850eacf3e945 70
RodColeman 0:850eacf3e945 71 /** Return code for timeouts from sys_arch_mbox_fetch and sys_arch_sem_wait */
RodColeman 0:850eacf3e945 72 #define SYS_ARCH_TIMEOUT 0xffffffffUL
RodColeman 0:850eacf3e945 73
RodColeman 0:850eacf3e945 74 /** sys_mbox_tryfetch() returns SYS_MBOX_EMPTY if appropriate.
RodColeman 0:850eacf3e945 75 * For now we use the same magic value, but we allow this to change in future.
RodColeman 0:850eacf3e945 76 */
RodColeman 0:850eacf3e945 77 #define SYS_MBOX_EMPTY SYS_ARCH_TIMEOUT
RodColeman 0:850eacf3e945 78
RodColeman 0:850eacf3e945 79 #include "lwip/err.h"
RodColeman 0:850eacf3e945 80 #include "arch/sys_arch.h"
RodColeman 0:850eacf3e945 81
RodColeman 0:850eacf3e945 82 /** Function prototype for thread functions */
RodColeman 0:850eacf3e945 83 typedef void (*lwip_thread_fn)(void *arg);
RodColeman 0:850eacf3e945 84
RodColeman 0:850eacf3e945 85 /* Function prototypes for functions to be implemented by platform ports
RodColeman 0:850eacf3e945 86 (in sys_arch.c) */
RodColeman 0:850eacf3e945 87
RodColeman 0:850eacf3e945 88 /* Mutex functions: */
RodColeman 0:850eacf3e945 89
RodColeman 0:850eacf3e945 90 /** Define LWIP_COMPAT_MUTEX if the port has no mutexes and binary semaphores
RodColeman 0:850eacf3e945 91 should be used instead */
RodColeman 0:850eacf3e945 92 #if LWIP_COMPAT_MUTEX
RodColeman 0:850eacf3e945 93 /* for old ports that don't have mutexes: define them to binary semaphores */
RodColeman 0:850eacf3e945 94 #define sys_mutex_t sys_sem_t
RodColeman 0:850eacf3e945 95 #define sys_mutex_new(mutex) sys_sem_new(mutex, 1)
RodColeman 0:850eacf3e945 96 #define sys_mutex_lock(mutex) sys_sem_wait(mutex)
RodColeman 0:850eacf3e945 97 #define sys_mutex_unlock(mutex) sys_sem_signal(mutex)
RodColeman 0:850eacf3e945 98 #define sys_mutex_free(mutex) sys_sem_free(mutex)
RodColeman 0:850eacf3e945 99 #define sys_mutex_valid(mutex) sys_sem_valid(mutex)
RodColeman 0:850eacf3e945 100 #define sys_mutex_set_invalid(mutex) sys_sem_set_invalid(mutex)
RodColeman 0:850eacf3e945 101
RodColeman 0:850eacf3e945 102 #else /* LWIP_COMPAT_MUTEX */
RodColeman 0:850eacf3e945 103
RodColeman 0:850eacf3e945 104 /** Create a new mutex
RodColeman 0:850eacf3e945 105 * @param mutex pointer to the mutex to create
RodColeman 0:850eacf3e945 106 * @return a new mutex */
RodColeman 0:850eacf3e945 107 err_t sys_mutex_new(sys_mutex_t *mutex);
RodColeman 0:850eacf3e945 108 /** Lock a mutex
RodColeman 0:850eacf3e945 109 * @param mutex the mutex to lock */
RodColeman 0:850eacf3e945 110 void sys_mutex_lock(sys_mutex_t *mutex);
RodColeman 0:850eacf3e945 111 /** Unlock a mutex
RodColeman 0:850eacf3e945 112 * @param mutex the mutex to unlock */
RodColeman 0:850eacf3e945 113 void sys_mutex_unlock(sys_mutex_t *mutex);
RodColeman 0:850eacf3e945 114 /** Delete a semaphore
RodColeman 0:850eacf3e945 115 * @param mutex the mutex to delete */
RodColeman 0:850eacf3e945 116 void sys_mutex_free(sys_mutex_t *mutex);
RodColeman 0:850eacf3e945 117 #ifndef sys_mutex_valid
RodColeman 0:850eacf3e945 118 /** Check if a mutex is valid/allocated: return 1 for valid, 0 for invalid */
RodColeman 0:850eacf3e945 119 int sys_mutex_valid(sys_mutex_t *mutex);
RodColeman 0:850eacf3e945 120 #endif
RodColeman 0:850eacf3e945 121 #ifndef sys_mutex_set_invalid
RodColeman 0:850eacf3e945 122 /** Set a mutex invalid so that sys_mutex_valid returns 0 */
RodColeman 0:850eacf3e945 123 void sys_mutex_set_invalid(sys_mutex_t *mutex);
RodColeman 0:850eacf3e945 124 #endif
RodColeman 0:850eacf3e945 125 #endif /* LWIP_COMPAT_MUTEX */
RodColeman 0:850eacf3e945 126
RodColeman 0:850eacf3e945 127 /* Semaphore functions: */
RodColeman 0:850eacf3e945 128
RodColeman 0:850eacf3e945 129 /** Create a new semaphore
RodColeman 0:850eacf3e945 130 * @param sem pointer to the semaphore to create
RodColeman 0:850eacf3e945 131 * @param count initial count of the semaphore
RodColeman 0:850eacf3e945 132 * @return ERR_OK if successful, another err_t otherwise */
RodColeman 0:850eacf3e945 133 err_t sys_sem_new(sys_sem_t *sem, u8_t count);
RodColeman 0:850eacf3e945 134 /** Signals a semaphore
RodColeman 0:850eacf3e945 135 * @param sem the semaphore to signal */
RodColeman 0:850eacf3e945 136 void sys_sem_signal(sys_sem_t *sem);
RodColeman 0:850eacf3e945 137 /** Wait for a semaphore for the specified timeout
RodColeman 0:850eacf3e945 138 * @param sem the semaphore to wait for
RodColeman 0:850eacf3e945 139 * @param timeout timeout in milliseconds to wait (0 = wait forever)
RodColeman 0:850eacf3e945 140 * @return time (in milliseconds) waited for the semaphore
RodColeman 0:850eacf3e945 141 * or SYS_ARCH_TIMEOUT on timeout */
RodColeman 0:850eacf3e945 142 u32_t sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout);
RodColeman 0:850eacf3e945 143 /** Delete a semaphore
RodColeman 0:850eacf3e945 144 * @param sem semaphore to delete */
RodColeman 0:850eacf3e945 145 void sys_sem_free(sys_sem_t *sem);
RodColeman 0:850eacf3e945 146 /** Wait for a semaphore - forever/no timeout */
RodColeman 0:850eacf3e945 147 #define sys_sem_wait(sem) sys_arch_sem_wait(sem, 0)
RodColeman 0:850eacf3e945 148 #ifndef sys_sem_valid
RodColeman 0:850eacf3e945 149 /** Check if a sempahore is valid/allocated: return 1 for valid, 0 for invalid */
RodColeman 0:850eacf3e945 150 int sys_sem_valid(sys_sem_t *sem);
RodColeman 0:850eacf3e945 151 #endif
RodColeman 0:850eacf3e945 152 #ifndef sys_sem_set_invalid
RodColeman 0:850eacf3e945 153 /** Set a semaphore invalid so that sys_sem_valid returns 0 */
RodColeman 0:850eacf3e945 154 void sys_sem_set_invalid(sys_sem_t *sem);
RodColeman 0:850eacf3e945 155 #endif
RodColeman 0:850eacf3e945 156
RodColeman 0:850eacf3e945 157 /* Time functions. */
RodColeman 0:850eacf3e945 158 #ifndef sys_msleep
RodColeman 0:850eacf3e945 159 void sys_msleep(u32_t ms); /* only has a (close to) 1 jiffy resolution. */
RodColeman 0:850eacf3e945 160 #endif
RodColeman 0:850eacf3e945 161
RodColeman 0:850eacf3e945 162 /* Mailbox functions. */
RodColeman 0:850eacf3e945 163
RodColeman 0:850eacf3e945 164 /** Create a new mbox of specified size
RodColeman 0:850eacf3e945 165 * @param mbox pointer to the mbox to create
RodColeman 0:850eacf3e945 166 * @param size (miminum) number of messages in this mbox
RodColeman 0:850eacf3e945 167 * @return ERR_OK if successful, another err_t otherwise */
RodColeman 0:850eacf3e945 168 err_t sys_mbox_new(sys_mbox_t *mbox, int size);
RodColeman 0:850eacf3e945 169 /** Post a message to an mbox - may not fail
RodColeman 0:850eacf3e945 170 * -> blocks if full, only used from tasks not from ISR
RodColeman 0:850eacf3e945 171 * @param mbox mbox to posts the message
RodColeman 0:850eacf3e945 172 * @param msg message to post (ATTENTION: can be NULL) */
RodColeman 0:850eacf3e945 173 void sys_mbox_post(sys_mbox_t *mbox, void *msg);
RodColeman 0:850eacf3e945 174 /** Try to post a message to an mbox - may fail if full or ISR
RodColeman 0:850eacf3e945 175 * @param mbox mbox to posts the message
RodColeman 0:850eacf3e945 176 * @param msg message to post (ATTENTION: can be NULL) */
RodColeman 0:850eacf3e945 177 err_t sys_mbox_trypost(sys_mbox_t *mbox, void *msg);
RodColeman 0:850eacf3e945 178 /** Wait for a new message to arrive in the mbox
RodColeman 0:850eacf3e945 179 * @param mbox mbox to get a message from
RodColeman 0:850eacf3e945 180 * @param msg pointer where the message is stored
RodColeman 0:850eacf3e945 181 * @param timeout maximum time (in milliseconds) to wait for a message
RodColeman 0:850eacf3e945 182 * @return time (in milliseconds) waited for a message, may be 0 if not waited
RodColeman 0:850eacf3e945 183 or SYS_ARCH_TIMEOUT on timeout
RodColeman 0:850eacf3e945 184 * The returned time has to be accurate to prevent timer jitter! */
RodColeman 0:850eacf3e945 185 u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout);
RodColeman 0:850eacf3e945 186 /* Allow port to override with a macro, e.g. special timout for sys_arch_mbox_fetch() */
RodColeman 0:850eacf3e945 187 #ifndef sys_arch_mbox_tryfetch
RodColeman 0:850eacf3e945 188 /** Wait for a new message to arrive in the mbox
RodColeman 0:850eacf3e945 189 * @param mbox mbox to get a message from
RodColeman 0:850eacf3e945 190 * @param msg pointer where the message is stored
RodColeman 0:850eacf3e945 191 * @param timeout maximum time (in milliseconds) to wait for a message
RodColeman 0:850eacf3e945 192 * @return 0 (milliseconds) if a message has been received
RodColeman 0:850eacf3e945 193 * or SYS_MBOX_EMPTY if the mailbox is empty */
RodColeman 0:850eacf3e945 194 u32_t sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg);
RodColeman 0:850eacf3e945 195 #endif
RodColeman 0:850eacf3e945 196 /** For now, we map straight to sys_arch implementation. */
RodColeman 0:850eacf3e945 197 #define sys_mbox_tryfetch(mbox, msg) sys_arch_mbox_tryfetch(mbox, msg)
RodColeman 0:850eacf3e945 198 /** Delete an mbox
RodColeman 0:850eacf3e945 199 * @param mbox mbox to delete */
RodColeman 0:850eacf3e945 200 void sys_mbox_free(sys_mbox_t *mbox);
RodColeman 0:850eacf3e945 201 #define sys_mbox_fetch(mbox, msg) sys_arch_mbox_fetch(mbox, msg, 0)
RodColeman 0:850eacf3e945 202 #ifndef sys_mbox_valid
RodColeman 0:850eacf3e945 203 /** Check if an mbox is valid/allocated: return 1 for valid, 0 for invalid */
RodColeman 0:850eacf3e945 204 int sys_mbox_valid(sys_mbox_t *mbox);
RodColeman 0:850eacf3e945 205 #endif
RodColeman 0:850eacf3e945 206 #ifndef sys_mbox_set_invalid
RodColeman 0:850eacf3e945 207 /** Set an mbox invalid so that sys_mbox_valid returns 0 */
RodColeman 0:850eacf3e945 208 void sys_mbox_set_invalid(sys_mbox_t *mbox);
RodColeman 0:850eacf3e945 209 #endif
RodColeman 0:850eacf3e945 210
RodColeman 0:850eacf3e945 211 /** The only thread function:
RodColeman 0:850eacf3e945 212 * Creates a new thread
RodColeman 0:850eacf3e945 213 * @param name human-readable name for the thread (used for debugging purposes)
RodColeman 0:850eacf3e945 214 * @param thread thread-function
RodColeman 0:850eacf3e945 215 * @param arg parameter passed to 'thread'
RodColeman 0:850eacf3e945 216 * @param stacksize stack size in bytes for the new thread (may be ignored by ports)
RodColeman 0:850eacf3e945 217 * @param prio priority of the new thread (may be ignored by ports) */
RodColeman 0:850eacf3e945 218 sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio);
RodColeman 0:850eacf3e945 219
RodColeman 0:850eacf3e945 220 #endif /* NO_SYS */
RodColeman 0:850eacf3e945 221
RodColeman 0:850eacf3e945 222 /* sys_init() must be called before anthing else. */
RodColeman 0:850eacf3e945 223 void sys_init(void);
RodColeman 0:850eacf3e945 224
RodColeman 0:850eacf3e945 225 #ifndef sys_jiffies
RodColeman 0:850eacf3e945 226 /** Ticks/jiffies since power up. */
RodColeman 0:850eacf3e945 227 u32_t sys_jiffies(void);
RodColeman 0:850eacf3e945 228 #endif
RodColeman 0:850eacf3e945 229
RodColeman 0:850eacf3e945 230 /** Returns the current time in milliseconds,
RodColeman 0:850eacf3e945 231 * may be the same as sys_jiffies or at least based on it. */
RodColeman 0:850eacf3e945 232 u32_t sys_now(void);
RodColeman 0:850eacf3e945 233
RodColeman 0:850eacf3e945 234 /* Critical Region Protection */
RodColeman 0:850eacf3e945 235 /* These functions must be implemented in the sys_arch.c file.
RodColeman 0:850eacf3e945 236 In some implementations they can provide a more light-weight protection
RodColeman 0:850eacf3e945 237 mechanism than using semaphores. Otherwise semaphores can be used for
RodColeman 0:850eacf3e945 238 implementation */
RodColeman 0:850eacf3e945 239 #ifndef SYS_ARCH_PROTECT
RodColeman 0:850eacf3e945 240 /** SYS_LIGHTWEIGHT_PROT
RodColeman 0:850eacf3e945 241 * define SYS_LIGHTWEIGHT_PROT in lwipopts.h if you want inter-task protection
RodColeman 0:850eacf3e945 242 * for certain critical regions during buffer allocation, deallocation and memory
RodColeman 0:850eacf3e945 243 * allocation and deallocation.
RodColeman 0:850eacf3e945 244 */
RodColeman 0:850eacf3e945 245 #if SYS_LIGHTWEIGHT_PROT
RodColeman 0:850eacf3e945 246
RodColeman 0:850eacf3e945 247 /** SYS_ARCH_DECL_PROTECT
RodColeman 0:850eacf3e945 248 * declare a protection variable. This macro will default to defining a variable of
RodColeman 0:850eacf3e945 249 * type sys_prot_t. If a particular port needs a different implementation, then
RodColeman 0:850eacf3e945 250 * this macro may be defined in sys_arch.h.
RodColeman 0:850eacf3e945 251 */
RodColeman 0:850eacf3e945 252 #define SYS_ARCH_DECL_PROTECT(lev) sys_prot_t lev
RodColeman 0:850eacf3e945 253 /** SYS_ARCH_PROTECT
RodColeman 0:850eacf3e945 254 * Perform a "fast" protect. This could be implemented by
RodColeman 0:850eacf3e945 255 * disabling interrupts for an embedded system or by using a semaphore or
RodColeman 0:850eacf3e945 256 * mutex. The implementation should allow calling SYS_ARCH_PROTECT when
RodColeman 0:850eacf3e945 257 * already protected. The old protection level is returned in the variable
RodColeman 0:850eacf3e945 258 * "lev". This macro will default to calling the sys_arch_protect() function
RodColeman 0:850eacf3e945 259 * which should be implemented in sys_arch.c. If a particular port needs a
RodColeman 0:850eacf3e945 260 * different implementation, then this macro may be defined in sys_arch.h
RodColeman 0:850eacf3e945 261 */
RodColeman 0:850eacf3e945 262 #define SYS_ARCH_PROTECT(lev) lev = sys_arch_protect()
RodColeman 0:850eacf3e945 263 /** SYS_ARCH_UNPROTECT
RodColeman 0:850eacf3e945 264 * Perform a "fast" set of the protection level to "lev". This could be
RodColeman 0:850eacf3e945 265 * implemented by setting the interrupt level to "lev" within the MACRO or by
RodColeman 0:850eacf3e945 266 * using a semaphore or mutex. This macro will default to calling the
RodColeman 0:850eacf3e945 267 * sys_arch_unprotect() function which should be implemented in
RodColeman 0:850eacf3e945 268 * sys_arch.c. If a particular port needs a different implementation, then
RodColeman 0:850eacf3e945 269 * this macro may be defined in sys_arch.h
RodColeman 0:850eacf3e945 270 */
RodColeman 0:850eacf3e945 271 #define SYS_ARCH_UNPROTECT(lev) sys_arch_unprotect(lev)
RodColeman 0:850eacf3e945 272 sys_prot_t sys_arch_protect(void);
RodColeman 0:850eacf3e945 273 void sys_arch_unprotect(sys_prot_t pval);
RodColeman 0:850eacf3e945 274
RodColeman 0:850eacf3e945 275 #else
RodColeman 0:850eacf3e945 276
RodColeman 0:850eacf3e945 277 #define SYS_ARCH_DECL_PROTECT(lev)
RodColeman 0:850eacf3e945 278 #define SYS_ARCH_PROTECT(lev)
RodColeman 0:850eacf3e945 279 #define SYS_ARCH_UNPROTECT(lev)
RodColeman 0:850eacf3e945 280
RodColeman 0:850eacf3e945 281 #endif /* SYS_LIGHTWEIGHT_PROT */
RodColeman 0:850eacf3e945 282
RodColeman 0:850eacf3e945 283 #endif /* SYS_ARCH_PROTECT */
RodColeman 0:850eacf3e945 284
RodColeman 0:850eacf3e945 285 /*
RodColeman 0:850eacf3e945 286 * Macros to set/get and increase/decrease variables in a thread-safe way.
RodColeman 0:850eacf3e945 287 * Use these for accessing variable that are used from more than one thread.
RodColeman 0:850eacf3e945 288 */
RodColeman 0:850eacf3e945 289
RodColeman 0:850eacf3e945 290 #ifndef SYS_ARCH_INC
RodColeman 0:850eacf3e945 291 #define SYS_ARCH_INC(var, val) do { \
RodColeman 0:850eacf3e945 292 SYS_ARCH_DECL_PROTECT(old_level); \
RodColeman 0:850eacf3e945 293 SYS_ARCH_PROTECT(old_level); \
RodColeman 0:850eacf3e945 294 var += val; \
RodColeman 0:850eacf3e945 295 SYS_ARCH_UNPROTECT(old_level); \
RodColeman 0:850eacf3e945 296 } while(0)
RodColeman 0:850eacf3e945 297 #endif /* SYS_ARCH_INC */
RodColeman 0:850eacf3e945 298
RodColeman 0:850eacf3e945 299 #ifndef SYS_ARCH_DEC
RodColeman 0:850eacf3e945 300 #define SYS_ARCH_DEC(var, val) do { \
RodColeman 0:850eacf3e945 301 SYS_ARCH_DECL_PROTECT(old_level); \
RodColeman 0:850eacf3e945 302 SYS_ARCH_PROTECT(old_level); \
RodColeman 0:850eacf3e945 303 var -= val; \
RodColeman 0:850eacf3e945 304 SYS_ARCH_UNPROTECT(old_level); \
RodColeman 0:850eacf3e945 305 } while(0)
RodColeman 0:850eacf3e945 306 #endif /* SYS_ARCH_DEC */
RodColeman 0:850eacf3e945 307
RodColeman 0:850eacf3e945 308 #ifndef SYS_ARCH_GET
RodColeman 0:850eacf3e945 309 #define SYS_ARCH_GET(var, ret) do { \
RodColeman 0:850eacf3e945 310 SYS_ARCH_DECL_PROTECT(old_level); \
RodColeman 0:850eacf3e945 311 SYS_ARCH_PROTECT(old_level); \
RodColeman 0:850eacf3e945 312 ret = var; \
RodColeman 0:850eacf3e945 313 SYS_ARCH_UNPROTECT(old_level); \
RodColeman 0:850eacf3e945 314 } while(0)
RodColeman 0:850eacf3e945 315 #endif /* SYS_ARCH_GET */
RodColeman 0:850eacf3e945 316
RodColeman 0:850eacf3e945 317 #ifndef SYS_ARCH_SET
RodColeman 0:850eacf3e945 318 #define SYS_ARCH_SET(var, val) do { \
RodColeman 0:850eacf3e945 319 SYS_ARCH_DECL_PROTECT(old_level); \
RodColeman 0:850eacf3e945 320 SYS_ARCH_PROTECT(old_level); \
RodColeman 0:850eacf3e945 321 var = val; \
RodColeman 0:850eacf3e945 322 SYS_ARCH_UNPROTECT(old_level); \
RodColeman 0:850eacf3e945 323 } while(0)
RodColeman 0:850eacf3e945 324 #endif /* SYS_ARCH_SET */
RodColeman 0:850eacf3e945 325
RodColeman 0:850eacf3e945 326
RodColeman 0:850eacf3e945 327 #ifdef __cplusplus
RodColeman 0:850eacf3e945 328 }
RodColeman 0:850eacf3e945 329 #endif
RodColeman 0:850eacf3e945 330
RodColeman 0:850eacf3e945 331 #endif /* __LWIP_SYS_H__ */