Please, in my program I am using a shared array named @array
in 2 process,
$handle = tie@array, 'IPC::Shareable', undef, { destroy => 1};
I dynamically add values in the array during my program execution;
when I tried to put the 13177th element, I
have this message when compiling :
" Length of shared data exceeds shared segment size at Program line 205 "
How to do, if I want to use a shared array of 240000 elements or more ?
Thank you for your answer ...
Start Free Trial