@david_chisnall@infosec.exchange
@pertho@mastodon.bsd.cafe
I would guess that these functions are implemented with ptrace (if theyβre implemented at all, they might not be). There are various sysctls and procctls that can prevent ptrace from working. It might be worth using trace to see which system calls are failing.
@pertho@mastodon.bsd.cafe
@david_chisnall@infosec.exchange I got quite a bit further. I ended up needing to mount /proc:
mount -t procfs proc /proc
Now I get odd SmartHeap error about being out of memory. Is there some sysctl I need to bump up? kern.ipc.shmall I set to 10x the normal amount but that didn't help.
I thought /proc was a relic of the past. I guess WINE still uses it for some syscalls.