From 8e6dd82d7dae1e416373144c02c743b70a54c95e Mon Sep 17 00:00:00 2001 From: Yaksh Bariya Date: Wed, 2 Apr 2025 07:03:33 +0530 Subject: [PATCH] doc: process.execve is only unavailable for Windows execve() call is available on Android as well. When process.execve was first added, it seems like no one checked if that is actually available on Android as well and works out of the box as __POSIX__ is defined on Android. process.execve call seems to behave just as fine as on Linux environment in my testing, so just make the docs specify it. --- doc/api/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index 7db1c90260a9cb..4e77acb72f39ea 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -3370,7 +3370,7 @@ any exit or close events and without running any cleanup handler. This function will never return, unless an error occurred. -This function is only available on POSIX platforms (i.e. not Windows or Android). +This function is not available on Windows. ## `process.report`