mirror of https://github.com/m-labs/artiq.git
21 lines
387 B
C
21 lines
387 B
C
// This file is Copyright (c) 2015 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
// LiteETH lwIP port for ARTIQ
|
|
// License: BSD
|
|
|
|
#ifndef __ARCH_SYS_ARCH_H__
|
|
#define __ARCH_SYS_ARCH_H__
|
|
|
|
#define SYS_MBOX_NULL NULL
|
|
#define SYS_SEM_NULL NULL
|
|
|
|
typedef void * sys_prot_t;
|
|
|
|
typedef void * sys_sem_t;
|
|
|
|
typedef void * sys_mbox_t;
|
|
|
|
typedef void * sys_thread_t;
|
|
|
|
#endif /* __ARCH_SYS_ARCH_H__ */
|
|
|