9df1183b94
. added safecopies.c: these are library functions to maintain grant tables in own address space . sys_safecopy.c: interfaces to kernel calls to perform safe copy functions in from or to foreign process . changes in i/o fields (type merged with request) reflected in library functions (sys_out.c, sys_vinb.c, sys_vinl.c, sys_vinw.c, sys_voutb.c, sys_voutl.c, sys_voutw.c) . type merged with request in sys_sdevio, also now accepts offset which is used when a grant is specified (the _DIO_SAFE subtype) . system printf() function changed to send DIAGNOSTICS_S messages, which specify a grant id instead of a direct address for the buffer to be printed; tty and log can then safecopy the buffer
65 lines
1,000 B
Makefile
65 lines
1,000 B
Makefile
# Makefile for lib/syslib.
|
|
|
|
CFLAGS="-O -D_MINIX -D_POSIX_SOURCE"
|
|
|
|
LIBRARIES=libsys
|
|
|
|
libsys_FILES=" \
|
|
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_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_slot_name.c \
|
|
safecopies.c \
|
|
sys_abort.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_safecopy.c \
|
|
sys_sdevio.c \
|
|
sys_segctl.c \
|
|
sys_setalarm.c \
|
|
sys_sigreturn.c \
|
|
sys_sigsend.c \
|
|
sys_privctl.c \
|
|
sys_times.c \
|
|
sys_trace.c \
|
|
sys_umap.c \
|
|
sys_vinb.c \
|
|
sys_vinl.c \
|
|
sys_vinw.c \
|
|
sys_vircopy.c \
|
|
sys_vm_map.c \
|
|
sys_vm_setbuf.c \
|
|
sys_voutb.c \
|
|
sys_voutl.c \
|
|
sys_voutw.c \
|
|
taskcall.c"
|
|
|
|
TYPE=both
|