From 33ee5c26b064c421d1e6e5665f306e86c1388dbb Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 3 Jun 2001 20:36:52 +0000 Subject: [PATCH] Fix the fork example. --- vvp/examples/fork.vvp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vvp/examples/fork.vvp b/vvp/examples/fork.vvp index 3f8374c3e..ddee1854b 100644 --- a/vvp/examples/fork.vvp +++ b/vvp/examples/fork.vvp @@ -24,7 +24,7 @@ S_main .scope "main"; child %vpi_call "$display", "I'm a child"; %end; -parent %fork child; +parent %fork child, S_main; %vpi_call "$display", "I'm a parent"; %join; %vpi_call "$display", "reaped";