<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style>
</head>
<body lang="EN-US">
<div class="WordSection1">
<p class="MsoNormal">Hi There,</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">we are working with etherlab's ethercat master and recently we've encountered a problem that is related to a non interruptible wait_event().</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">The scenario:</p>
<p class="MsoNormal">A multi-threaded user space app cyclically reads SDO from some ecat slave.</p>
<p class="MsoNormal">The user space app then crashes.</p>
<p class="MsoNormal">All the threads end besides the one that performs the SDO read:</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">.....</p>
<p class="MsoNormal">1022  1022 TS       -   0  19   0  0.0 Zl   task_dead                abcde <defunct></p>
<p class="MsoNormal">1022  1202 RR       2   -  42   0  0.6 Dl   ecrt_master_sdo_upload   abcde1</p>
<p class="MsoNormal">.....</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">This situation interferes with debugging the app, and prevents a core dump from being generated.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">In master.c in ecrt_master_sdo_upload() I see an invoke of wait_event_interruptible() followed by an invoke of wait_event().</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">After changing wait_event() to wait_event_interruptible() the app can successfully crash, and it is now easier to debug.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Needless to say, we need a core dump to be generated when the app crashes at costumer's site.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">The question is what is the reason behind using wait_event() instead of wait_event_interruptible() ?</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Is it safe for us to change the code?</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks,</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Nir.<o:p></o:p></p>
</div>
</body>
</html>