Hi!
> @@ -642,6 +642,22 @@ the same working directory (they use FIFO for 
> synchronization). The checkpoint
>  interface provides two pairs of signal and wait functions. One pair to be 
> used
>  to signal child from parent and second to signal parent from child.
>  
> +Checkpoint is represented by 'struct tst_checkpoint', which has to be
> +initialized before first usage and FIFO has to be created. This is
> +usually done in parent process in single step by calling
> +'tst_checkpoint_create()'.
> +
> +Child processes created via fork() are ready to use tst_checkpoint_*
> +synchronization functions, as they inherited already initialized
> +'struct tst_checkpoint'.
> +
> +Child processes started via exec*, or any other process can use already
> +created FIFO, provided they initialize 'struct tst_checkpoint' first by
> +call to 'tst_checkpoint_init()'. This function does not create any FIFO,
> +it relies on fact, that it was already created by some other process.
> +Note, that if you use multiple FIFOs in this scenario, these should be
> +initialized in same order as in process you are sychronizing against.
> +
>  For the details of the interface, look into the 'include/tst_checkpoint.h' 
> and
>  'lib/tests/tst_checkpoint_*'.

Nicely done.

We should also add:

IMPORTANT: Be wary that using single checkpoint to signal child/parent followed
           immediately by wait for parent/child creates an race condtion
           between opening the pipe and reading from it (the process
           writing to the fifo may may be the wery same process that
           reads from it and the checkpoint code will exit the test
           with error). You are advised to use two checkpoints in this
           case.

-- 
Cyril Hrubis
chru...@suse.cz

------------------------------------------------------------------------------
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to