Temporary add stubs to the Linux emulation layer which calls the existing hook.
Details
Details
Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 40115 Build 37004: arc lint + arc unit
Event Timeline
sys/kern/kern_exec.c | ||
---|---|---|
1156 | At this point, error is KERN_SUCCESS, which is some Mach error code. We never assume that it has zero value. Please replace this fragment by e.g. the following return (sv->sv_onexec != NULL ? sv->sv_onexec(p, imgp) : 0); |