Details
Details
- Reviewers
trasz - Group Reviewers
Linux Emulation - Commits
- rS283403: Implement pselect6() system call.
Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
sys/amd64/linux32/syscalls.master | ||
---|---|---|
513 ↗ | (On Diff #2181) | Wouldn't it be better to use l_sigset_t for sig, to match the definition in Linux? |
sys/compat/linux/linux_misc.c | ||
2094 ↗ | (On Diff #2181) | args->sig != NULL |
2096 ↗ | (On Diff #2181) | error != 0; similar cases below |
2131 ↗ | (On Diff #2181) | Where does the "sizeof(l_int) * 8" come from? |
sys/amd64/linux32/syscalls.master | ||
---|---|---|
513 ↗ | (On Diff #2181) | *sig is a ptr to the struct l_pselect6arg defined at the start of linux_misc.c |