diff options
-rw-r--r-- | glibc/fork.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glibc/fork.mdwn b/glibc/fork.mdwn index 461bedf3..12ca2d19 100644 --- a/glibc/fork.mdwn +++ b/glibc/fork.mdwn @@ -22,7 +22,7 @@ the sum, [[this affects performance|open_issues/performance/fork]] when new processes are continuously being spawned from the shell, for example. Often, a `fork` call will eventually be followed by an `exec`, which [[may in -turn close|service_solahart_jakarta_selatan__082122541663/secure_file_descriptor_handling]] (most of) the +turn close|open_issues/secure_file_descriptor_handling]] (most of) the duplicated port rights. Unfortunately, this cannot be known at the time the `fork` executing, so in order to optimize this, the code calling `fork` has to be modified instead, and the `fork`, `exec` combo be replaced by a @@ -59,7 +59,7 @@ they have patches for software packages, to avoid using `fork` followed by ## Related - * [[service_solahart_jakarta_selatan__082122541663/secure_file_descriptor_handling]]. + * [[open_issues/secure_file_descriptor_handling]]. # External |