abd498aa71
- All those diffs to syscalls.master for each architecture *are* necessary. This needed clarification; the stub code generation for mlockall() was disabled, which would prevent applications from linking to this API (suggested by mux) - Giant has been quoshed. It is no longer held by the code, as the required locking has been pushed down within vm_map.c. - Callers must specify VM_MAP_WIRE_HOLESOK or VM_MAP_WIRE_NOHOLES to express their intention explicitly. - Inspected at the vmstat, top and vm pager sysctl stats level. Paging-in activity is occurring correctly, using a test harness. - The RES size for a process may appear to be greater than its SIZE. This is believed to be due to mappings of the same shared library page being wired twice. Further exploration is needed. - Believed to back out of allocations and locks correctly (tested with WITNESS, MUTEX_PROFILING, INVARIANTS and DIAGNOSTIC). PR: kern/43426, standards/54223 Reviewed by: jake, alc Approved by: jake (mentor) MFC after: 2 weeks
24 lines
590 B
Makefile
24 lines
590 B
Makefile
# $FreeBSD$
|
|
|
|
SRCS+= __sparc_sigtramp_setup.c \
|
|
__sparc_utrap.c \
|
|
__sparc_utrap_align.c \
|
|
__sparc_utrap_emul.c \
|
|
__sparc_utrap_fp_disabled.S \
|
|
__sparc_utrap_gen.S \
|
|
__sparc_utrap_install.c \
|
|
__sparc_utrap_setup.c \
|
|
sigcode.S
|
|
|
|
CFLAGS+= -I${.CURDIR}/sparc64/fpu
|
|
|
|
MDASM+= brk.S cerror.S exect.S pipe.S ptrace.S sbrk.S setlogin.S sigaction.S
|
|
|
|
# Don't generate default code for these syscalls:
|
|
NOASM= break.o exit.o ftruncate.o getdomainname.o getlogin.o \
|
|
lseek.o mmap.o openbsd_poll.o pread.o \
|
|
pwrite.o setdomainname.o sstk.o truncate.o uname.o yield.o
|
|
|
|
PSEUDO= _getlogin.o _exit.o
|
|
|