| 149 | } |
| 150 | |
| 151 | static ssize_t process_vm_writev(pid_t pid, |
| 152 | const struct iovec *local_iov, |
| 153 | unsigned long liovcnt, |
| 154 | const struct iovec *remote_iov, |
| 155 | unsigned long riovcnt, |
| 156 | unsigned long flags) |
| 157 | { |
| 158 | return syscall(SYS_process_vm_writev, pid, local_iov, liovcnt, remote_iov, riovcnt, flags); |
| 159 | } |
| 160 | |
| 161 | bool switchnsto(pid_t pid) { |
| 162 | int fd = pidfd_open(pid, 0); |
nothing calls this directly
no outgoing calls
no test coverage detected