Ruby 3.5.0dev (2025-02-22 revision 412997300569c1853c09813e4924b6df3d7e8669)
process.h
Go to the documentation of this file.
1#ifndef RBIMPL_INTERN_PROCESS_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RBIMPL_INTERN_PROCESS_H
25#include "ruby/internal/config.h" /* rb_pid_t is defined here. */
27#include "ruby/internal/value.h"
28
30
31/* process.c */
32
33
40VALUE rb_process_status_wait(rb_pid_t pid, int flags);
41
49void rb_last_status_set(int status, rb_pid_t pid);
50
59
70int rb_proc_exec(const char *cmd);
71
180VALUE rb_f_exec(int argc, const VALUE *argv);
181
199rb_pid_t rb_waitpid(rb_pid_t pid, int *status, int flags);
200
209void rb_syswait(rb_pid_t pid);
210
230rb_pid_t rb_spawn(int argc, const VALUE *argv);
231
249rb_pid_t rb_spawn_err(int argc, const VALUE *argv, char *errbuf, size_t buflen);
250
262VALUE rb_proc_times(VALUE _);
263
278VALUE rb_detach_process(rb_pid_t pid);
279
281
282#endif /* RBIMPL_INTERN_PROCESS_H */
Tweaking visibility of C variables/functions.
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition dllexport.h:74
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition dllexport.h:65
int rb_proc_exec(const char *cmd)
Executes a shell command.
Definition process.c:1697
VALUE rb_last_status_get(void)
Queries the "last status", or the $?.
Definition process.c:610
rb_pid_t rb_waitpid(rb_pid_t pid, int *status, int flags)
Waits for a process, with releasing GVL.
Definition process.c:1167
rb_pid_t rb_spawn_err(int argc, const VALUE *argv, char *errbuf, size_t buflen)
Identical to rb_spawn(), except you can additionally know the detailed situation in case of abnormal ...
Definition process.c:4612
void rb_syswait(rb_pid_t pid)
This is a shorthand of rb_waitpid without status and flags.
Definition process.c:4483
VALUE rb_f_exec(int argc, const VALUE *argv)
Replaces the current process by running the given external command.
Definition process.c:2916
rb_pid_t rb_spawn(int argc, const VALUE *argv)
Identical to rb_f_exec(), except it spawns a child process instead of replacing the current one.
Definition process.c:4618
VALUE rb_process_status_wait(rb_pid_t pid, int flags)
Wait for the specified process to terminate, reap it, and return its status.
Definition process.c:1094
void rb_last_status_set(int status, rb_pid_t pid)
Sets the "last status", or the $?.
Definition process.c:681
VALUE rb_detach_process(rb_pid_t pid)
"Detaches" a subprocess.
Definition process.c:1451
Defines RBIMPL_ATTR_NONNULL.
#define RBIMPL_ATTR_NONNULL(list)
Wraps (or simulates) __attribute__((nonnull))
Definition nonnull.h:30
Defines RBIMPL_ATTR_NORETURN.
#define RBIMPL_ATTR_NORETURN()
Wraps (or simulates) [[noreturn]]
Definition noreturn.h:38
#define _(args)
This was a transition path from K&R to ANSI.
Definition stdarg.h:35
Defines VALUE and ID.
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40