HP SVA V2.0 Parallel Compositing Reference Guide

pcContextCreate(3)
NAME
pcContextCreate -- Creates a context as a slave.
Synopsis
PCerr pcContextCreate(
PCid netId,
PCstring thisHost,
PCcontext *ctx
);
Parameters
netId The ID of the network transport layer for this context. It must match the value of
the PC_NETWORK_ID property passed to pcContextCreateMaster. To use the
default network, specify PC_ID_DEFAULT (the first transport layer).
thisHost The name of this host in the following format:
hostName:hosted
The master specified the members of the context using the hosts parameter. thisHost
must be on one of these hosts.
ctx A variable to hold the context that is created.
Returns
This function returns PC_NO_ERROR on successful completion.
Description
A slave host uses this function to create a context. The name of the slave (thisHost) must be one
of the hosts listed by the master in its hosts parameter.
This function will not return until all hosts have created the context, or theLibrary encounters
an error creating a context. On a successful return, the ctx parameter is set to a PCcontext value
that other functions requiring a context can use.
48