Re: [Qemu-discuss] golang on linux-user

2016-03-02 Thread Hunter Laux
Would it be possible to multiplex 64 by using sigqueue? Just use si_value as the signal number when multiplexing. Then you wouldn't have to keep taking away signal numbers from runtimes and you break sigqueue for one signal number. Just return an error and set EINVAL if a program calls sigaction

[Qemu-discuss] golang on linux-user

2016-03-01 Thread Hunter Laux
* along with this program; if not, see <http://www.gnu.org/licenses/>. */ + +#define sigaction __libc_sigaction #include "qemu/osdep.h" #include #include Thanks, Hunter Laux