Re: Does 11 years actually mean 11 years?
No parole in the US Federal system. The best she gets is one sixth off for good behaviour, so a touch over nine years.
7 publicly visible posts • joined 28 May 2016
It didn't quite make it across. They replaced went from PostScript based to PDF based in the move from NeXT to macOS. As well as being simpler and more suited to the present day it happily avoided paying Adobe any money as PDF was an open standard.
https://stackoverflow.com/a/49846861
This is what they want to do on OS X too. It seem that Windows has a userspace means of achieving this, but OS X requires a kext. The way to allow/deny filesystem actions on OS X is via kauth. Guess what the 'k' stands for.
I've written a kauth kext. You have a minimal kext that says I'm interested in filesystem actions a/b/c. You get notified when interesting stuff happens and your kext should then inform your userspace component that stuff is happening. The userspace component does the donkey work and lets the kext know whether to allow or deny.
The kext undoubtedly adds a potential source of panics, but the kext should be absolutely minimal: get notification, tell userspace, get response, allow/deny.