[PATCH] libdl: Add C++ exception support to loaded modules.
This has been tested on SPARC, i386, PowerPC and ARM. Closes #2767. --- .../sparc/erc32/make/custom/erc32-testsuite.tcfg | 4 - cpukit/libdl/Makefile.am | 1 + cpukit/libdl/dlfcn.c | 2 +- cpukit/libdl/rtl-allocator.c
Re: [PATCH 7/7] Adding pipe support
On 09/12/16 21:26, Kevin Kirspel wrote: @@ -280,10 +298,14 @@ start_worker(test_context *ctx) static void set_non_blocking(int fd, int enable) { - int rv; + int flags = fcntl(fd, F_GETFL, 0); - rv = ioctl(fd, FIONBIO, &enable); - assert(rv == 0); + if (enable ) {