created | 2018-11-29T22:38:23Z |
---|---|
begin | 2018-06-23T00:00:00Z |
end | 2018-06-24T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2018-06-23T11:33:32Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/kern/uipc_usrreq.c | log | diff | annotate |
message |
Improve the consistency of variable naming in unp_externalize(). Rename the int array `fdp' to `fds', and use the name `fdp' for a variable that points to the filedesc struct of the current process. This use of `fdp' puts unp_externalize() in line with filesystem code. OK millert@, kettenis@ |
date | 2018-06-23T14:38:59Z | |||
---|---|---|---|---|
author | denis | |||
files | src/sys/kern/uipc_domain.c | log | diff | annotate |
message |
Replace value with a constant OK bluhm@, jca@ |
date | 2018-06-23T22:13:50Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/armv7/stand/efiboot/Makefile | log | diff | annotate |
message |
Add -z notext and -z norelro to prevent fatal warnings with ld.lld(1). ok guenther@ |
date | 2018-06-23T22:15:14Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm/arm/sig_machdep.c | log | diff | annotate |
src/sys/arch/arm/include/signal.h | log | diff | annotate | |
message |
Save and restore FPU registers around signal handlers. Fixes the random crashes in sh(1). ok guenther@ |