From: Erik M. <er...@us...> - 2001-10-02 21:54:51
|
Update of /cvsroot/blob/blob/include In directory usw-pr-cvs1:/tmp/cvs-serv6717/include Modified Files: command.h time.h Log Message: And this is how the init/exit lists are used. init_subsystems() is called in main(), exit_subsystems() just before the kernel boots. This should clean up things nicely. Index: command.h =================================================================== RCS file: /cvsroot/blob/blob/include/command.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- command.h 2001/09/17 00:05:31 1.3 +++ command.h 2001/10/02 21:54:48 1.4 @@ -64,7 +64,6 @@ extern commandlist_t *commands; -void init_commands(void); int parse_command(char *cmdline); #define MAX_COMMANDLINE_LENGTH (128) Index: time.h =================================================================== RCS file: /cvsroot/blob/blob/include/time.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- time.h 2001/08/06 22:44:52 1.2 +++ time.h 2001/10/02 21:54:48 1.3 @@ -46,9 +46,6 @@ -/* initialise timer */ -void TimerInit(void); - /* returns the time in 1/TICKS_PER_SECOND seconds */ u32 TimerGetTime(void); |