Improve system call support on NT

- Improve i/o perf on New Technology
- Code cleanup on read() for New Technology
- Fix bad bug with dup() of socket on New Technology
- Clean up some more strace errors on New Technology
This commit is contained in:
Justine Tunney 2022-04-07 20:30:04 -07:00
parent 29bf8b1a30
commit 4f98ad1054
79 changed files with 707 additions and 197 deletions

View file

@ -161,6 +161,8 @@ static struct InterruptibleCall g_fsgs_icall;
*/
int arch_prctl(int code, int64_t addr) {
void *fn = arch_prctl_fsgsbase;
#if 0
if (!g_fsgs_once) {
g_fsgs_once = true;
if (X86_HAVE(FSGSBASE)) {
@ -180,6 +182,8 @@ int arch_prctl(int code, int64_t addr) {
if (g_fsgs_once == 2) {
return arch_prctl_fsgsbase(code, addr);
}
#endif
switch (__hostos) {
case METAL:
return arch_prctl_msr(code, addr);