summaryrefslogtreecommitdiffstats
path: root/stacks/lwip_stack/release/lwip_helper_files/lwip/arch/sys_arch.h
blob: 92ff0499e0554c45b62599424899b65e803c5e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef STACKX_ARCH_SYS_ARCH_H
#define STACKX_ARCH_SYS_ARCH_H
#ifdef __cplusplus
extern "C"
{
#endif

#include <sys/types.h>
#include <semaphore.h>

#include "cc.h"

/*add by daifen 2012.7.27*/
  typedef uint64_t sys_thread_t;

  extern u64_t hz_per_ms;

  void stackx_global_lock (void);
  void stackx_global_unlock (void);

#define SYS_ARCH_PROTECT(lev) stackx_global_lock()
#define SYS_ARCH_UNPROTECT(lev) stackx_global_unlock()
#define SYS_ARCH_DECL_PROTECT(lev)

#ifdef __cplusplus

}
#endif
#endif