Re: OSv HTML5 terminal

2017-01-12 Thread Dor Laor
On Jan 12, 2017 4:47 AM, "Pekka Enberg" wrote: On Thu, Jan 12, 2017 at 2:44 PM, Waldek Kozaczuk wrote: > I embarked on a project to create HTML5 app that could act as a simple shell > environment to OSv same way as cli module does using REST apis. Looks really nice! +1 way to go Waldek - P

Re: OSv HTML5 terminal

2017-01-12 Thread Pekka Enberg
On Thu, Jan 12, 2017 at 2:44 PM, Waldek Kozaczuk wrote: > I embarked on a project to create HTML5 app that could act as a simple shell > environment to OSv same way as cli module does using REST apis. Looks really nice! - Pekka -- You received this message because you are subscribed to the Goo

[COMMIT osv master] exceptions: support #XM

2017-01-12 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master exceptions: support #XM The #XM exception ("SIMD exception") may be generated when we request (via feenableexcept()) to trap exceptional FPU cases such as floating point division by zero. We should generate a SIGFPE in this case. This

[COMMIT osv master] Add feenableexcept() and friends to fenv.h

2017-01-12 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master Add feenableexcept() and friends to fenv.h Our include/api/fenv.h (copied from Musl) was missing those functions. Signed-off-by: Nadav Har'El Message-Id: <20170110014009.27314-1-...@scylladb.com> --- diff --git a/include/api/fenv.h b

[COMMIT osv master] signal: remove "nested signals" protection

2017-01-12 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master signal: remove "nested signals" protection This reverts commit 4af3677117a5bb2f4660d750fa4eddc6ef44e7f2 which aborted on a "nested signal" (handling a signal handler while inside a signal handler). Nested signals were never strictly im

[COMMIT osv master] Implement feenableexcept() and friends

2017-01-12 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master Implement feenableexcept() and friends Implement the functions feenableexcept(), fedisableexcept() and fegetexcept(), non-standard glibc functions which allows controlling which FPU events generate a floating point exception. Signed-of

[COMMIT osv master] test for feenableexcept() and friends

2017-01-12 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master test for feenableexcept() and friends A test for feeenableexcept() and SIGFPE. Works on both Linux and OSv. Signed-off-by: Nadav Har'El Message-Id: <20170110013215.25950-4-...@scylladb.com> --- diff --git a/modules/tests/Makefile b/m