|
|
| version 1.3, 2003/11/21 08:32:46 | version 1.4, 2003/12/04 20:09:33 |
|---|---|
| Line 49 struct upcall { | Line 49 struct upcall { |
| #define UPC_CRITADD 32 /* NOTE! same as TDPRI_CRIT */ | #define UPC_CRITADD 32 /* NOTE! same as TDPRI_CRIT */ |
| #if defined(_KERNEL) | #if defined(_KERNEL) |
| /* | |
| * Kernel protoypes | |
| */ | |
| struct vmspace; | struct vmspace; |
| Line 56 void upc_release(struct vmspace *vm, str | Line 59 void upc_release(struct vmspace *vm, str |
| void postupcall(struct proc *p); | void postupcall(struct proc *p); |
| #else | #else |
| /* | |
| * Userland prototypes | |
| */ | |
| int upc_register(struct upcall *, upcall_func_t, upcall_func_t, void *); | int upc_register(struct upcall *, upcall_func_t, upcall_func_t, void *); |
| int upc_dispatch(int upcid); | int upc_control(int, int, void *); |
| void upc_callused_wrapper(void *); | |
| #endif | #endif |