created | 2018-11-30T00:01:55Z |
---|---|
begin | 2018-07-18T00:00:00Z |
end | 2018-07-19T00:00:00Z |
path | src/sys |
commits | 2 |
date | 2018-07-18T10:47:02Z | |||
---|---|---|---|---|
author | helg | |||
files | src/sys/miscfs/fuse/fuse_vnops.c | log | diff | annotate |
message |
Replace VATTR_NULL() with memset(3) in fusefs_getattr(). VATTR_NULL() sets all members of struct vattr to VNOVAL (-1) instead of 0, which is what is appropriate here. The VATTR_NULL() macro is intended for initialising struct vattr when setting attributes. ok mpi@ |
date | 2018-07-18T16:55:17Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/kern/kern_sig.c | log | diff | annotate |
src/sys/sys/signalvar.h | log | diff | annotate | |
message |
Revert the change that delivers process signals to any threads. As side effect pending signals specifically sent to the main thread were handled by other threads. This made gcj in textproc/pdftk port build stall. Noticed and tested by espie@. |