Paddy Byers
Paddy Byers
This PR allows a set of custom labels to be declared in any procedure definition, so that each new ticket created for that procedure will include those labels, in addition...
From a recent incident report: > It is evident that the current ably-js behaviour in the browser is too eager to remove the transport preference. There are real use-cases where...
deps/libeio/eio.c assumes that statvfs is available on all platforms except windows. It is not available on Android. Proposed fix: https://github.com/paddybyers/node/commit/5d4609018214a24723fc8340b22c2611666493fe
deps/v8/src/platform-posix.cc contains a dependency on This is available in the Android open source project (AOSP) but not in the NDK. For an NDK build, there needs to be a way...
There are two interrelated issues: 1) There is a lot of include logic relating to inclusion of nameser.h and the arpa variants that is duplicated across multiple files. Any change...
Android only supports the "non-reentrant" variants of these calls. Suggest adding a configure option to enable use of these variants. Suggested change here: https://github.com/paddybyers/node/commit/25d1b16f8738976236882cf69914c364abc1115c
So here's my first attempt at this: https://github.com/paddybyers/node/commits/gyp-xcode Two issues: 1) node-v8.gyp includes v8.gyp (which is, as intended, unmodified from the file in v8 upstream). However, gyp goes wrong when...
With multiple event loops, SIGCHLD handling - specifically, the ability to be notified of the exit of a process that you have spawned - does not work. Currently node installs...
## Introduction This is a summary of the issues and proposed solutions to be able to run multiple node instances in a single process. The requirement arises on Android -...
This commit: https://github.com/paddybyers/node/commit/1f7df3be67f71a59bf89cf97b5ec385476d7eac2 addresses an issue if a sub-script (run by `runInNewContext()`) is forcibly terminated (via `node::Isolate::Stop()`). The root cause is this: ``` Isolate::PropagatePendingExceptionToExternalTryCatch() ... } else if (thread_local_top_.pending_exception_ ==...