tiny-shell 0.2
A mini shell project aiming to gain knowledge about Win32 and Linux API
Loading...
Searching...
No Matches
child_processes.c File Reference
#include "child_processes.h"
#include "../core/io_wrap.h"
#include "../os/operations.h"
Include dependency graph for child_processes.c:

Go to the source code of this file.

Functions

enum run_result run_child_processes (int proc_id)
 Resume running a process.
 

Function Documentation

◆ run_child_processes()

enum run_result run_child_processes ( int proc_id)

Resume running a process.

Definition at line 5 of file child_processes.c.

5 {
6 bool result = show_child_processes(proc_id);
7 return result ? RUN_OK : RUN_FAILED;
8}
bool show_child_processes(int proc_id)
Show child processes.
@ RUN_OK
Definition res.h:7
@ RUN_FAILED
Definition res.h:9

References RUN_FAILED, RUN_OK, and show_child_processes().

Referenced by invoke_runner().

Here is the call graph for this function:
Here is the caller graph for this function: