mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 15:48:48 -04:00
Pass the right pid into the parent and child tasks so that when a test
fails, we kill the right partner process.
This commit is contained in:
parent
8c4d74c408
commit
dfe0ec64aa
1 changed files with 2 additions and 2 deletions
|
|
@ -161,9 +161,9 @@ main(int argc, char *argv[])
|
|||
err(-1, "fork");
|
||||
if (child_pid == 0) {
|
||||
child_pid = getpid();
|
||||
tcp_server(child_pid);
|
||||
tcp_server(parent_pid);
|
||||
} else
|
||||
tcp_client(parent_pid, 800);
|
||||
tcp_client(child_pid, 800);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue