Skip to content

Commit

Permalink
evapi: start evapi dispatcher process with rpc rank
Browse files Browse the repository at this point in the history
- it may be used for handling responses from external app with sip
  related functions
- reported by GH #622

(cherry picked from commit 2d1a7e4)
  • Loading branch information
miconda committed Jun 27, 2016
1 parent fd6501f commit 761f84a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/evapi/evapi_mod.c
Expand Up @@ -168,7 +168,7 @@ static int child_init(int rank)
return 0;
}

pid=fork_process(PROC_NOCHLDINIT, "EvAPI Dispatcher", 1);
pid=fork_process(PROC_RPC, "EvAPI Dispatcher", 1);
if (pid<0)
return -1; /* error */
if(pid==0) {
Expand Down

0 comments on commit 761f84a

Please sign in to comment.