lib/posix-process: Make rt_sitgimedwait stub block
According to rt_sigtimedwait(2) the syscall should return a signal
number on success (> 0) or -1 on failure, so the zero value currently
returned by the stubbed implementation can be misinterpreted by
applications that check against failure. Update the stub to return
implementation to block and never return a signal.