vmWriteInt32 writes a uint32 to the process' memory at ptr.
(n *seccomp.Notif, ptr uintptr, val uint32)
| 200 | |
| 201 | // vmWriteInt32 writes a uint32 to the process' memory at ptr. |
| 202 | func (p *Process) vmWriteUint32(n *seccomp.Notif, ptr uintptr, val uint32) (syscall.Errno, error) { |
| 203 | return p.vmWriteBytes(n, ptr, arch.AppendUint32(nil, val)) |
| 204 | } |
| 205 | |
| 206 | // vmWriteSockaddr writes a sockaddr struct and its length to the process' |
| 207 | // memory at ptr. It panics if addr is invalid or if ptr/sizePtr is NULL. |
no test coverage detected