From e46e48d690cf543193418ef08725cdbe31688975 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Tue, 29 Aug 2023 22:24:55 +1200 Subject: Expose `rb_process_status_wait` and hide `rb_process_status_waitv`. (#8316) --- include/ruby/internal/intern/process.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include/ruby') diff --git a/include/ruby/internal/intern/process.h b/include/ruby/internal/intern/process.h index 7a7b24ed4b..5dcf85e80c 100644 --- a/include/ruby/internal/intern/process.h +++ b/include/ruby/internal/intern/process.h @@ -30,6 +30,15 @@ RBIMPL_SYMBOL_EXPORT_BEGIN() /* process.c */ +/** + * Wait for the specified process to terminate, reap it, and return its status. + * + * @param[in] pid The process ID to wait for. + * @param[in] flags The flags to pass to waitpid(2). + * @return VALUE An instance of Process::Status. + */ +VALUE rb_process_status_wait(rb_pid_t pid, int flags); + /** * Sets the "last status", or the `$?`. * -- cgit v1.2.3