NetBSD/sys/compat/svr4_32
riastradh d1579b2d70 Rename min/max -> uimin/uimax for better honesty.
These functions are defined on unsigned int.  The generic name
min/max should not silently truncate to 32 bits on 64-bit systems.
This is purely a name change -- no functional change intended.

HOWEVER!  Some subsystems have

	#define min(a, b)	((a) < (b) ? (a) : (b))
	#define max(a, b)	((a) > (b) ? (a) : (b))

even though our standard name for that is MIN/MAX.  Although these
may invite multiple evaluation bugs, these do _not_ cause integer
truncation.

To avoid `fixing' these cases, I first changed the name in libkern,
and then compile-tested every file where min/max occurred in order to
confirm that it failed -- and thus confirm that nothing shadowed
min/max -- before changing it.

I have left a handful of bootloaders that are too annoying to
compile-test, and some dead code:

cobalt ews4800mips hp300 hppa ia64 luna68k vax
acorn32/if_ie.c (not included in any kernels)
macppc/if_gm.c (superseded by gem(4))

It should be easy to fix the fallout once identified -- this way of
doing things fails safe, and the goal here, after all, is to _avoid_
silent integer truncations, not introduce them.

Maybe one day we can reintroduce min/max as type-generic things that
never silently truncate.  But we should avoid doing that for a while,
so that existing code has a chance to be detected by the compiler for
conversion to uimin/uimax without changing the semantics until we can
properly audit it all.  (Who knows, maybe in some cases integer
truncation is actually intended!)
2018-09-03 16:29:22 +00:00
..
Makefile
files.svr4_32
sed.script
svr4_32_acl.h
svr4_32_dirent.h
svr4_32_exec.c Allow syscall_establish() to install new syscalls when the existing 2018-08-10 21:44:58 +00:00
svr4_32_exec.h
svr4_32_exec_elf32.c
svr4_32_fcntl.c
svr4_32_fcntl.h
svr4_32_filio.c
svr4_32_fuser.h
svr4_32_hrt.h
svr4_32_ioctl.c Make debug code compile 2017-09-16 09:04:50 +00:00
svr4_32_ioctl.h
svr4_32_ipc.c
svr4_32_ipc.h
svr4_32_lwp.c
svr4_32_lwp.h
svr4_32_misc.c Rename min/max -> uimin/uimax for better honesty. 2018-09-03 16:29:22 +00:00
svr4_32_mod.c
svr4_32_net.c as pointed out by riastradh@, i'll let this diff speak for itself: 2018-09-03 07:14:18 +00:00
svr4_32_resource.c
svr4_32_resource.h
svr4_32_schedctl.c
svr4_32_schedctl.h
svr4_32_siginfo.h
svr4_32_signal.c Make debug code compile 2017-09-16 09:04:50 +00:00
svr4_32_signal.h
svr4_32_socket.c
svr4_32_socket.h
svr4_32_sockio.c
svr4_32_sockio.h
svr4_32_stat.c
svr4_32_stat.h
svr4_32_statvfs.h
svr4_32_stream.c
svr4_32_stropts.h
svr4_32_syscall.h Regen 2018-08-10 21:47:14 +00:00
svr4_32_syscallargs.h Regen 2018-08-10 21:47:14 +00:00
svr4_32_syscalls.c Regen 2018-08-10 21:47:14 +00:00
svr4_32_sysent.c Regen 2018-08-10 21:47:14 +00:00
svr4_32_termios.c
svr4_32_termios.h
svr4_32_time.h
svr4_32_timod.h
svr4_32_types.h
svr4_32_ucontext.h
svr4_32_ustat.h
svr4_32_util.h
syscalls.conf
syscalls.master