KasperskyOS Community Edition 1.1
Contents
Contents
EntityConnectToService()
This function is declared in the header file coresrv/entity/entity_api.h
.
Retcode EntityConnectToService(Entity *cl, Entity *sr, const char *name);
This function connects processes with an IPC channel. To do so, the function creates IPC handles for the client process cl
and the server process sr
, and then binds the handles to each other. The created channel will be added to the group of channels with the specified name
. The connected processes must be in the stopped state.
If successful, the function returns rcOk.
Page top