diff --git a/src/sys/include/ubixos/kmod.h b/src/sys/include/ubixos/kmod.h index 3cbca89..b4e336a 100644 --- a/src/sys/include/ubixos/kmod.h +++ b/src/sys/include/ubixos/kmod.h @@ -37,6 +37,10 @@ typedef struct kmod_struct { struct kmod_struct *next; struct kmod_struct *prev; + uInt16 id; + uInt16 refs; + uInt32 address; + char name[128]; } kmod_t; @@ -46,6 +50,9 @@ /*** $Log$ + Revision 1.2 2004/09/26 20:39:19 reddawg + Added kmod struct type kmod_t + Revision 1.1 2004/09/20 07:33:10 reddawg Start of kernel modules will make it much more flexable - These modules can be either in kernel threads or system services...