I am trying to pass a pointer to a system call by passing a message with that call.
The pointer should be to an int[].
However the message definition expects a char pointer to be passed. How can I send an int pointer?
int pidarray[j];
m.m1_p1 = pidarray;
Is it possible to convert the pointer types?