now used for printing diagnostic messages through the kernel message buffer. this lets processes print diagnostics without sending messages to tty and log directly, simplifying the message protocol a lot and reducing difficulties with deadlocks and other situations in which diagnostics are blackholed (e.g. grants don't work). this makes DIAGNOSTICS(_S), ASYN_DIAGNOSTICS and DIAG_REPL obsolete, although tty and log still accept the codes for 'old' binaries. This also simplifies diagnostics in several servers and drivers - only tty needs its own kputc() now. . simplifications in vfs, and some effort to get the vnode references right (consistent) even during shutdown. m_mounted_on is now NULL for root filesystems (!) (the original and new root), a less awkward special case than 'm_mounted_on == m_root_node'. root now has exactly one reference, to root, if no files are open, just like all other filesystems. m_driver_e is unused.
		
			
				
	
	
		
			86 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Makefile for lib/syslib.
 | 
						|
 | 
						|
CFLAGS="-O -D_MINIX -D_POSIX_SOURCE"
 | 
						|
 | 
						|
LIBRARIES=libsys
 | 
						|
 | 
						|
libsys_FILES=" \
 | 
						|
	alloc_util.c \
 | 
						|
	assert.c \
 | 
						|
	panic.c \
 | 
						|
	pci_attr_r16.c \
 | 
						|
	pci_attr_r32.c \
 | 
						|
	pci_attr_r8.c \
 | 
						|
	pci_attr_w16.c \
 | 
						|
	pci_attr_w32.c \
 | 
						|
	pci_attr_w8.c \
 | 
						|
	pci_del_acl.c \
 | 
						|
	pci_dev_name.c \
 | 
						|
	pci_find_dev.c \
 | 
						|
	pci_first_dev.c \
 | 
						|
	pci_ids.c \
 | 
						|
	pci_init.c \
 | 
						|
	pci_init1.c \
 | 
						|
	pci_next_dev.c \
 | 
						|
	pci_rescan_bus.c \
 | 
						|
	pci_reserve.c \
 | 
						|
	pci_set_acl.c \
 | 
						|
	pci_slot_name.c \
 | 
						|
	safecopies.c \
 | 
						|
	sys_abort.c \
 | 
						|
	sys_cprof.c \
 | 
						|
	sys_endsig.c \
 | 
						|
	sys_eniop.c \
 | 
						|
	sys_exec.c \
 | 
						|
	sys_exit.c \
 | 
						|
	sys_fork.c \
 | 
						|
	sys_getinfo.c \
 | 
						|
	sys_getsig.c \
 | 
						|
	sys_in.c \
 | 
						|
	sys_int86.c \
 | 
						|
	sys_irqctl.c \
 | 
						|
	sys_kill.c \
 | 
						|
	sys_memset.c \
 | 
						|
	sys_newmap.c \
 | 
						|
	sys_nice.c \
 | 
						|
	sys_out.c \
 | 
						|
	sys_physcopy.c \
 | 
						|
	sys_readbios.c \
 | 
						|
	sys_safecopy.c \
 | 
						|
	sys_sysctl.c \
 | 
						|
	sys_vsafecopy.c \
 | 
						|
	sys_profbuf.c \
 | 
						|
	sys_sdevio.c \
 | 
						|
	sys_segctl.c \
 | 
						|
	sys_setalarm.c \
 | 
						|
	sys_sigreturn.c \
 | 
						|
	sys_sigsend.c \
 | 
						|
	sys_privctl.c \
 | 
						|
	sys_setgrant.c \
 | 
						|
	sys_sprof.c \
 | 
						|
	sys_stime.c \
 | 
						|
	sys_times.c \
 | 
						|
	sys_trace.c \
 | 
						|
	sys_umap.c \
 | 
						|
	sys_vinb.c \
 | 
						|
	sys_vinl.c \
 | 
						|
	sys_vinw.c \
 | 
						|
	sys_vircopy.c \
 | 
						|
	sys_vm_setbuf.c \
 | 
						|
	sys_vmctl.c \
 | 
						|
	sys_voutb.c \
 | 
						|
	sys_voutl.c \
 | 
						|
	sys_voutw.c \
 | 
						|
	taskcall.c \
 | 
						|
	ds.c	\
 | 
						|
	vm_allocmem.c \
 | 
						|
	vm_brk.c \
 | 
						|
	vm_exec_newmem.c \
 | 
						|
	vm_exit.c \
 | 
						|
	vm_fork.c \
 | 
						|
	vm_map_phys.c \
 | 
						|
	vm_umap.c \
 | 
						|
	vm_push_sig.c"
 | 
						|
 | 
						|
TYPE=both
 |