<div dir="ltr"><p class="">Hi,</p><p class=""> Here, I am trying to implement CIM provider</p><p class=""> I have created mof file named test.mof and its 
content is copied here.</p><p class=""> class GK_UnixProcess : CIM_UnixProcess</p><p class="">{</p><p class="">    
[Description(&quot;Send signal to the process.&quot;)]</p><p class="">    uint32 Signal(</p><p class="">        [Description(&quot;Number of the signal.&quot;),</p><p class="">         ValueMap{&quot;1&quot;, &quot;2&quot;, &quot;3&quot;, &quot;4&quot;, &quot;6&quot;, &quot;8&quot;, &quot;9&quot;, 
&quot;..&quot;},</p><p class="">         Values{&quot;SIGHUP&quot;, 
&quot;SIGINT&quot;, &quot;SIGQUIT&quot;, &quot;SIGILL&quot;, &quot;SIGABRT&quot;, &quot;SIGFPE&quot;, &quot;SIGKILL&quot;, 
&quot;Reserved&quot;}]</p><p class="">        uint16 Number</p><p class="">    );</p><p class="">};</p><p class=""> </p><p class="">[ 
Association,</p><p class="">  Description(&quot;This 
association connects a process with all its children.&quot;)]</p><p class="">class GK_ProcessChild</p><p class="">{</p><p class="">    [Key, 
Description(&quot;Parent process.&quot;)]</p><p class="">   
 GK_UnixProcess REF Parent;</p><p class=""> </p><p class="">    [Key, Description(&quot;Child process.&quot;)]</p><p class="">    GK_UnixProcess REF Child;</p><p class="">};</p><p class=""> </p><p class="">Then I trying to generate .c and .h file using 
konkrete</p><p class=""><b><i>$ konkret -s 
GK_UnixProcess -m ../mof/test.mof GK_UnixProcess=UnixProcess</i></b></p><p class=""><b><i> </i></b>But
 I got error,</p><p class=""><b><i> Using:</i></b></p><p class=""><b><i>error: ../mof/LMI_test.mof(3): undefined 
qualifier: &quot;Description&quot;</i></b></p><p class=""><b><i> </i></b>Please help me, <br></p><p class=""> </p><p class="">Regards,</p><p class="">George</p></div>