Hacker News new | ask | show | jobs
by lakwn 4595 days ago
When you have bytecode, you have programs that run using them. I understand how these are a good thing in fonts or in PDF, but what is running i this ACPI machine the author described?
2 comments

Motherboards provide drivers in ACPI bytecode for things like sleeping, waking, changing processor speed, changing backlight, etc.
The kernel. On linux for instance, this

    $ ps aux | grep acpi
turns up the following kernel process on my machine:

    root 663 0.0 0.0 0 0 ? S< Oct29 0:00 [ktpacpid]
I think the question is the reverse: not what program implements the VM but which programs run on it and what are they doing? at least that is what I'm asking.