Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Computer Aided Design - CAD > Cadence > Re: MonteCarlo ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 2 of 6 Topic 3958 of 4352
Post > Topic >>

Re: MonteCarlo Results from SKILL script

by Riad KACED <riad.kaced@[EMAIL PROTECTED] > Apr 21, 2008 at 04:12 PM

Hi There,

A quick glance at your code shows you are using the 'system' skill
command to process your data.
Well, 'system' pawns a separate UNIX process to execute a command. But
once the command thrown outside skill using 'system', no interaction
is left In other words, you skill script will continue its execustion
up to the end regadless the progress of the command sent with
'system'.

If you need to make your skill waiting for the execution of an
external Job, which seems the case here, you have better to use the
Inter Process Communication functions instead of system. With IPC
skill functions, you can communicate either synchronously or
asynchronously with the child process.
The IPC functions are well explained in the following do***ent :

Interprocess Communication SKILL Functions Reference  : $CDSHOME/doc/
skipcref/skipcref.pdf

A quick example of using IPC functions is :

cidHost = ipcBeginProcess("uname -n")
ipcWait(cidHost)
ridHost=car(parseString(ipcReadProcess(cidHost) "\n"))

The sequence is : Begin, wait, read ...

Hope this help you in solving your issues.

Good luck !

Riad.
 




 6 Posts in Topic:
MonteCarlo Results from SKILL script
"p_ritter" <  2008-04-21 05:31:42 
Re: MonteCarlo Results from SKILL script
Riad KACED <riad.kaced  2008-04-21 16:12:18 
Re: MonteCarlo Results from SKILL script
"S. Badel" <  2008-04-22 02:25:22 
Re: MonteCarlo Results from SKILL script
"p_ritter" <  2008-04-21 23:50:27 
Re: MonteCarlo Results from SKILL script
Riad KACED <riad.kaced  2008-04-22 15:44:21 
Re: MonteCarlo Results from SKILL script
"S. Badel" <  2008-04-23 11:29:42 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Thu Nov 20 5:46:02 CST 2008.