Spawning
referencespawningSpawning occurs when the keyword cilk_spawn
precedes a procedure call.
The semantics of a spawn differs from an ordinary procedure call in
that the procedure instance that executes the spawn—the parent—may continue
to execute in parallel with the spawned subroutine—its child—instead of waiting
for the child to finish, as would happen in a serial execution.