From: Eric Wong Date: Fri, 23 Dec 2022 12:51:08 +0000 (+0000) Subject: syscall: drop syscall.ph support X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=4e3de80c04d0d1490dfff97396e5783394e4c3d5 syscall: drop syscall.ph support h2ph-generated *.ph files are often wrong or incomplete and IME they cause more problems than they solve. Furthermore, we need knowledge of struct layouts which h2ph-generated files can't get us. So trim down some bloat and leave a note for porters. --- diff --git a/lib/PublicInbox/Syscall.pm b/lib/PublicInbox/Syscall.pm index bda9bbb0..cecb1247 100644 --- a/lib/PublicInbox/Syscall.pm +++ b/lib/PublicInbox/Syscall.pm @@ -60,21 +60,6 @@ use constant { }; my @BYTES_4_hole = BYTES_4_hole ? (0) : (); -our $loaded_syscall = 0; - -sub _load_syscall { - # props to Gaal for this! - return if $loaded_syscall++; - my $clean = sub { - delete @INC{qw}; - }; - $clean->(); # don't trust modules before us - my $rv = eval { require 'syscall.ph'; 1 } || eval { require 'sys/syscall.ph'; 1 }; - $clean->(); # don't require modules after us trust us - $rv; -} - our ( $SYS_epoll_create, @@ -256,19 +241,12 @@ if ($^O eq "linux") { $FS_IOC_SETFLAGS = 0x80046602; $SIGNUM{WINCH} = 20; } else { - # as a last resort, try using the *.ph files which may not - # exist or may be wrong - _load_syscall(); - $SYS_epoll_create = eval { &SYS_epoll_create; } || 0; - $SYS_epoll_ctl = eval { &SYS_epoll_ctl; } || 0; - $SYS_epoll_wait = eval { &SYS_epoll_wait; } || 0; - - # Note: do NOT add new syscalls to depend on *.ph, here. - # Better to miss syscalls (so we can fallback to IO::Poll) - # than to use wrong ones, since the names are not stable - # (at least not on FreeBSD), if the actual numbers are. + warn <