Page MenuHomeFreeBSD

Implement pselect6() system call.
ClosedPublic

Authored by dchagin on Oct 31 2014, 6:51 AM.
Tags
None
Referenced Files
Unknown Object (File)
Jan 6 2024, 2:52 AM
Unknown Object (File)
Dec 23 2023, 9:53 AM
Unknown Object (File)
Nov 5 2023, 8:49 PM
Unknown Object (File)
Oct 31 2023, 9:07 AM
Unknown Object (File)
Oct 12 2023, 12:42 AM
Unknown Object (File)
Sep 30 2023, 1:35 PM
Unknown Object (File)
Sep 9 2023, 12:52 AM
Unknown Object (File)
Sep 6 2023, 9:24 AM
Subscribers

Details

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dchagin retitled this revision from to Implement pselect6() system call..
trasz added inline comments.
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?

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

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

sys/compat/linux/linux_misc.c
2131 ↗(On Diff #2181)

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.