127 Return code from $?

Value 127 is returned by /bin/sh when the given command is not found within your PATH system variable and it is not a built-in shell command. In other words, the system doesn’t understand your command, because it doesn’t know where to find the binary you’re trying to call.

Is process in VHDL reentrant?

No event will ever occur while a process is running! When a process is woken by an event, it runs to completion (“end process”) or an explicit “wait” statement, and goes to sleep. This takes, notionally, ZERO time. Which means that if you have loops in your process, they are effectively unrolled completely, and when … Read more