Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 44 → Rev 45

/shark/trunk/kernel/modules/makefile
4,6 → 4,7
BASE=../..
endif
include $(BASE)/config/config.mk
OSLIB=$(BASE)/oslib
 
LIBRARY = mod
 
/shark/trunk/kernel/mem/makefile
3,6 → 3,8
ifndef BASE
BASE=../..
endif
OSLIB=$(BASE)/oslib
 
include $(BASE)/config/config.mk
 
LIBRARY = mem
/shark/trunk/kernel/kern.c
18,11 → 18,11
 
/**
------------
CVS : $Id: kern.c,v 1.3 2003-01-07 17:07:49 pj Exp $
CVS : $Id: kern.c,v 1.4 2003-01-30 09:56:51 pj Exp $
 
File: $File$
Revision: $Revision: 1.3 $
Last update: $Date: 2003-01-07 17:07:49 $
Revision: $Revision: 1.4 $
Last update: $Date: 2003-01-30 09:56:51 $
------------
 
This file contains:
369,7 → 369,7
the system's structures (queues, tables) , & the two task main &
dummy, that are always present
+*/
void __kernel_init__(struct multiboot_info *multiboot)
void __kernel_init__(/* struct multiboot_info *multiboot */ void)
{
int i,j; /* counters */
 
378,10 → 378,10
// extern void C8042_restore(void); /* an exit function */
int aborting; /* it is set if we are aborting the system */
 
struct multiboot_info *multiboot=mbi_address();
 
 
 
 
/*
* Runlevel 0: kernel startup
*
/shark/trunk/kernel/makefile
3,6 → 3,8
ifndef BASE
BASE=..
endif
OSLIB=$(BASE)/oslib
 
include $(BASE)/config/config.mk
 
LIBRARY = gkern