mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
Made sys_arch_prot() interface more generic by returning sys_prot_t instead
of u32_t.
This commit is contained in:
parent
353478180d
commit
4fc309b1dd
@ -110,8 +110,8 @@ void sys_mbox_fetch(sys_mbox_t mbox, void **msg);
|
||||
In some implementations they can provide a more light-weight protection
|
||||
mechanism than using semaphores. Otherwise semaphores can be used for
|
||||
implementation */
|
||||
u32_t sys_arch_protect(void);
|
||||
void sys_arch_unprotect(u32_t pval);
|
||||
sys_prot_t sys_arch_protect(void);
|
||||
void sys_arch_unprotect(sys_prot_t pval);
|
||||
|
||||
/* Thread functions. */
|
||||
sys_thread_t sys_thread_new(void (* thread)(void *arg), void *arg);
|
||||
|
Loading…
Reference in New Issue
Block a user