Made sys_arch_prot() interface more generic by returning sys_prot_t instead

of u32_t.
This commit is contained in:
davidhaas 2003-02-12 16:38:46 +00:00
parent 353478180d
commit 4fc309b1dd

View File

@ -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);