Page MenuHomeFreeBSD

Implement pselect6() system call.
ClosedPublic

Authored by dchagin on Oct 31 2014, 6:51 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jun 3, 7:33 PM
Unknown Object (File)
Sun, Jun 1, 11:06 AM
Unknown Object (File)
Sat, May 31, 10:51 PM
Unknown Object (File)
Wed, May 28, 5:12 AM
Unknown Object (File)
Apr 27 2025, 10:36 PM
Unknown Object (File)
Apr 23 2025, 8:48 AM
Unknown Object (File)
Apr 21 2025, 5:25 PM
Unknown Object (File)
Apr 21 2025, 5:21 PM
Subscribers

Details

Diff Detail

Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

dchagin retitled this revision from to Implement pselect6() system call..
trasz added inline comments.
sys/amd64/linux32/syscalls.master
513

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

args->sig != NULL

2096

error != 0; similar cases below

2131

Where does the "sizeof(l_int) * 8" come from?

style(9) suggestions by trasz@. abibits will be fixed in D1093.

sys/amd64/linux32/syscalls.master
513

*sig is a ptr to the struct l_pselect6arg defined at the start of linux_misc.c

sys/compat/linux/linux_misc.c
2131

fixed by D1093!

trasz added a reviewer: trasz.
This revision is now accepted and ready to land.Mar 25 2015, 11:16 AM
This revision was automatically updated to reflect the committed changes.