drivers/can_copcican_win32/can_copcican_win32.vc10.vcxproj.filters
author Robert Lehmann <robert.lehmann@sitec-systems.de>
Tue, 28 Jul 2015 16:36:55 +0200
changeset 793 72e9e1064432
parent 708 1e0a91978826
permissions -rw-r--r--
timers_unix: Fix termination problem of WaitReceiveTaskEnd

The function pthread_kill sends the Signal thread and to the own process.
If you use this construct than the application which calls uses the
canfestival api will terminate at the call of canClose. To avoid that
use pthread_cancel instead of pthread_kill. To use the pthread_cancel call
you need to set the cancel ability in the thread function. That means
you need to call pthread_setcancelstate and pthread_setcanceltype.
For the termination of the thread at any time it is important to set the
cancel type to PTHREAD_CANCEL_ASYNCHRONOUS.
629
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     2
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     3
  <ItemGroup>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     4
    <Filter Include="Source Files">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     5
      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     6
      <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     7
    </Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     8
    <Filter Include="Header Files">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
     9
      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    10
      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    11
    </Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    12
    <Filter Include="Resource Files">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    13
      <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    14
      <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    15
    </Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    16
  </ItemGroup>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    17
  <ItemGroup>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    18
    <None Include="ReadMe.txt" />
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    19
    <None Include="can_copcican_win32.def">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    20
      <Filter>Source Files</Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    21
    </None>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    22
  </ItemGroup>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    23
  <ItemGroup>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    24
    <ClInclude Include="stdafx.h">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    25
      <Filter>Header Files</Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    26
    </ClInclude>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    27
    <ClInclude Include="targetver.h">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    28
      <Filter>Header Files</Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    29
    </ClInclude>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    30
  </ItemGroup>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    31
  <ItemGroup>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    32
    <ClCompile Include="stdafx.cpp">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    33
      <Filter>Source Files</Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    34
    </ClCompile>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    35
    <ClCompile Include="can_copcican_win32.cpp">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    36
      <Filter>Source Files</Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    37
    </ClCompile>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    38
    <ClCompile Include="dllmain.cpp">
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    39
      <Filter>Source Files</Filter>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    40
    </ClCompile>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    41
  </ItemGroup>
b9274b595650 CosateQ contribution.
edouard
parents:
diff changeset
    42
</Project>