<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic As matter of fact the crash in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975436#M24922</link>
    <description>&lt;P&gt;As matter of fact the crash originates probably inside CPUsideRDM.dll .Unfortunately that DLL is not present on my system therefore I cannot use dumpbin to inspect its Import/Export tables and thus trying to understand what that DLL does.Can you check on your system if you have CPUsideRDM.dll ?&lt;/P&gt;</description>
    <pubDate>Wed, 13 Nov 2013 06:05:40 GMT</pubDate>
    <dc:creator>Bernard</dc:creator>
    <dc:date>2013-11-13T06:05:40Z</dc:date>
    <item>
      <title>throw std::exception crashes Visual Studio 2013 with Intel Parallel Studio</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975429#M24915</link>
      <description>&lt;P&gt;If you use throw std::runtime_error anywhere inside a C++ program it brutally crashes the Visual Studio 2013 IDE without warning.&amp;nbsp;When I first encountered the crash I uninstalled Windows 7 (64-bit with SP1) and upgraded to Windows 8.1 Enterprise (64-bit). Then I installed Visual Studio Ultimate 2013 (v12.0.21005 REL). I ran the program below with no problems and I thought that I had fixed the problem. However, when I installed Intel C++ Studio XE 2013 (included SP1 with update 1) the bug came back. So there seem (at least on my system, a 2012 Macbook Pro Retina i7 running Windows) to be an issue with how Visual Studio 2013 and Intel C++ Studio 2013 works together.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;#include "stdafx.h"&lt;BR /&gt;#include &amp;lt;stdexcept&amp;gt;&lt;BR /&gt;#include &amp;lt;iostream&amp;gt;&lt;BR /&gt;&lt;BR /&gt;int _tmain(int argc, _TCHAR* argv [])&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;try&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;throw std::runtime_error("Test"); // Crashes Visual Studio here&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;catch (...)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;std::cerr &amp;lt;&amp;lt; "Error" &amp;lt;&amp;lt; std::endl; // never reached&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return 0; // never reached&lt;BR /&gt;}&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Steps to reproduce&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Create a new Win32 console project by chosing "New Project" in the Visual Studio 2013 IDE, then under "templates" expand "Visual C++" , select "Win32", select the "Win32 Console Application" option, and click the "OK" button. Click the "Finish" button in the "Application Wizard" that immidiately pops up. Now you have a new Win32 project. Now, open the cpp file containing your "_tmain()" function, and add a reference to the include file &amp;lt;stdexcept&amp;gt;, ie:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;#include &amp;lt;stdexcept&amp;gt;&lt;BR /&gt;&lt;BR /&gt;, then add one line of code inside your "_tmain()" :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;function throw std::runtime_error("Crashtest");&lt;BR /&gt;&lt;BR /&gt;Now the code should look something like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;#include "stdafx.h"&lt;BR /&gt;#include &amp;lt;stdexcept&amp;gt;&lt;BR /&gt;&lt;BR /&gt;int _tmain(int argc, _TCHAR* argv[])&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;throw std::runtime_error("Crashtest");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Now run it (press F5) and Visual Studio IDE crashes without warning; it does not matter if you try to run it in debug or release mode.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Product Language&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;English&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Tested operating systems&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Windows 7 (64-bit with SP1) and Windows 8.1 Enterprise (64-bit)&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Operating System Language&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Norwegian&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Actual results&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Crashes the Visual Studio 2013 IDE.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Logs&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;From the Windows event logs I can find the following after trying to run the aforementioned code (translated from Norwegian OS):&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;-----------------------------------------------&lt;BR /&gt;Error-bucket , type 0&lt;BR /&gt;Event name: APPCRASH&lt;BR /&gt;Answer: Not available&lt;BR /&gt;Cab-ID: 0&lt;BR /&gt;&lt;BR /&gt;Problem signature:&lt;BR /&gt;P1: devenv.exe&lt;BR /&gt;P2: 12.0.21005.1&lt;BR /&gt;P3: 524fcb34&lt;BR /&gt;P4: ntdll.dll&lt;BR /&gt;P5: 6.1.7601.18247&lt;BR /&gt;P6: 521ea8e7&lt;BR /&gt;P7: c00000fd&lt;BR /&gt;P8: 000325c1&lt;BR /&gt;P9:&amp;nbsp;&lt;BR /&gt;P10:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Attached files:&lt;BR /&gt;C:\Users\xxx\AppData\Local\Temp\WERCED4.tmp.WERInternalMetadata.xml&lt;BR /&gt;C:\Users\xxx\AppData\Local\Temp\WERD04B.tmp.appcompat.txt&lt;BR /&gt;C:\Users\xxx\AppData\Local\Temp\WERD0D8.tmp.hdmp&lt;BR /&gt;C:\Users\xxx\AppData\Local\Temp\WER146E.tmp.mdmp&lt;BR /&gt;&lt;BR /&gt;Files are available here:&lt;BR /&gt;C:\ProgramData\Microsoft\Windows\WER\ReportQueue\AppCrash_devenv.exe_bc27cec32734aacea6fdf84903abf1cd7cfcb_cab_18d119e7&lt;BR /&gt;&lt;BR /&gt;Analysis symbol:&amp;nbsp;&lt;BR /&gt;Looking for solution once more: 0&lt;BR /&gt;Repport-ID: 031b58cb-427b-11e3-97e4-a820661c62c8&lt;BR /&gt;Repportstatus: 5&lt;BR /&gt;-----------------------------------------------&lt;BR /&gt;Software with error: devenv.exe, versjon: 12.0.21005.1, time: 0x524fcb34 Module with error: ntdll.dll, versjon: 6.1.7601.18247, time: 0x521ea8e7 Exception code: 0xc00000fd Fault displacement: 0x000325c1 Error prosess-ID: 0x1920 Error starttime for software: 0x01ced687ba938040 Error software path: C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe Error module path: C:\Windows\SysWOW64\ntdll.dll&lt;BR /&gt;Error-ID: 031b58cb-427b-11e3-97e4-a820661c62c8&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Expected results&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;It should not crash the Visual Studio 2013 IDE.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2013 00:56:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975429#M24915</guid>
      <dc:creator>Inge_H_</dc:creator>
      <dc:date>2013-11-05T00:56:13Z</dc:date>
    </item>
    <item>
      <title>It seems that this code </title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975430#M24916</link>
      <description>&lt;P&gt;It seems that this code&amp;nbsp;&lt;STRONG&gt;&amp;nbsp;c00000fd&amp;nbsp;&lt;/STRONG&gt;stands for stack overflow.Can you dump context state.I would like to see the faulting IP if it belongs to devenv process.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2013 13:53:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975430#M24916</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-07T13:53:41Z</dc:date>
    </item>
    <item>
      <title>Here you go:</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975431#M24917</link>
      <description>&lt;P&gt;Here you go,&amp;nbsp;report file is attached.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2013 05:16:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975431#M24917</guid>
      <dc:creator>Inge_H_</dc:creator>
      <dc:date>2013-11-10T05:16:00Z</dc:date>
    </item>
    <item>
      <title>Thanks I will look at this.</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975432#M24918</link>
      <description>&lt;P&gt;Thanks I will look at this.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2013 08:31:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975432#M24918</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-11T08:31:42Z</dc:date>
    </item>
    <item>
      <title>A week since I posted this</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975433#M24919</link>
      <description>&lt;P&gt;A week since I posted this now. Why are no one from Intel giving me any feedback? Are there some other places I should post bug reports in Intel products? At least one more has reported the same bug&amp;nbsp;&lt;A href="http://stackoverflow.com/questions/19735162/throwing-stdexception-crashes-visual-studio-2013-ide#comment29400955_19756459"&gt;http://stackoverflow.com/questions/19735162/throwing-stdexception-crashes-visual-studio-2013-ide#comment29400955_19756459&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2013 18:23:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975433#M24919</guid>
      <dc:creator>Inge_H_</dc:creator>
      <dc:date>2013-11-11T18:23:58Z</dc:date>
    </item>
    <item>
      <title>It is still unknown if the</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975434#M24920</link>
      <description>&lt;P&gt;It is still unknown if the crash is even coincidentally related to Parallel Studio.It could be also MS problem and it seems so by looking at dump file.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2013 21:06:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975434#M24920</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-11T21:06:46Z</dc:date>
    </item>
    <item>
      <title>The crash only occurres after</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975435#M24921</link>
      <description>&lt;P&gt;The crash only occurres after I install&amp;nbsp;Intel C++ Studio XE 2013 (included SP1 with update 1) and not before. I did a clean install of Windows 8.1 and Visual Studio 2013 to confirm this. I don't know what else it could be. If you still think that Microsoft is to blame then you can add a comment to the bug report I filed to them here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;A href="https://connect.microsoft.com/VisualStudio/feedback/details/807509/throw-std-runtime-error-crashes-visual-studio-2013-ide"&gt;https://connect.microsoft.com/VisualStudio/feedback/details/807509/throw-std-runtime-error-crashes-visual-studio-2013-ide&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2013 20:20:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975435#M24921</guid>
      <dc:creator>Inge_H_</dc:creator>
      <dc:date>2013-11-12T20:20:09Z</dc:date>
    </item>
    <item>
      <title>As matter of fact the crash</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975436#M24922</link>
      <description>&lt;P&gt;As matter of fact the crash originates probably inside CPUsideRDM.dll .Unfortunately that DLL is not present on my system therefore I cannot use dumpbin to inspect its Import/Export tables and thus trying to understand what that DLL does.Can you check on your system if you have CPUsideRDM.dll ?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2013 06:05:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975436#M24922</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-13T06:05:40Z</dc:date>
    </item>
    <item>
      <title>I will upload a recurrence</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975437#M24923</link>
      <description>&lt;P&gt;I will upload a recurrence calls stack dump on MS forum.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2013 06:07:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975437#M24923</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-13T06:07:23Z</dc:date>
    </item>
    <item>
      <title>@iliyapolak The CPUsideRDM</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975438#M24924</link>
      <description>&lt;P&gt;@&lt;A href="http://software.intel.com/en-us/user/542548"&gt;iliyapolak&lt;/A&gt;&amp;nbsp;The&amp;nbsp;CPUsideRDM.dll library file resides in the&amp;nbsp;C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Packages\Debugger directory on my system. Even though it is inside a Microsoft Visual Studio directory it still is a Intel library, further investigation reveals that the&amp;nbsp;CPUsideRDM.dll library file product name is "Intel(R) Debugger Extension for Intel(R)...", I have version 1.0.8.0.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2013 16:10:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975438#M24924</guid>
      <dc:creator>Inge_H_</dc:creator>
      <dc:date>2013-11-15T16:10:59Z</dc:date>
    </item>
    <item>
      <title>Can you run dumpbin on that</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975439#M24925</link>
      <description>&lt;P&gt;Can you run dumpbin on that dll?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2013 09:09:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975439#M24925</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-16T09:09:59Z</dc:date>
    </item>
    <item>
      <title>Dumpbin output of  CPUsideRDM</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975440#M24926</link>
      <description>&lt;P&gt;Dumpbin output of &lt;SPAN style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 18px;"&gt;&amp;nbsp;CPUsideRDM.dll&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;attached. Dissembly ommitted in&amp;nbsp;accordance with&amp;nbsp;license agreement.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2013 19:12:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975440#M24926</guid>
      <dc:creator>Inge_H_</dc:creator>
      <dc:date>2013-11-16T19:12:25Z</dc:date>
    </item>
    <item>
      <title>Can you send me that file via</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975441#M24927</link>
      <description>&lt;P&gt;Can you send me that file via private messaging.&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 05:35:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975441#M24927</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-18T05:35:22Z</dc:date>
    </item>
    <item>
      <title>Sorry, that would be</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975442#M24928</link>
      <description>&lt;P&gt;Sorry, that would be violating the license agreement. Could you not install &lt;SPAN style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 18px;"&gt;Intel C++ Studio XE 2013 (included SP1 with update 1)&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;to get it?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 11:00:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975442#M24928</guid>
      <dc:creator>Inge_H_</dc:creator>
      <dc:date>2013-11-18T11:00:42Z</dc:date>
    </item>
    <item>
      <title>I still did not receive my</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975443#M24929</link>
      <description>&lt;P&gt;I still did not receive my Parallel Studio XE 2013 edition.Anyway for now dump file is sufficient to perform crash analysis.It seems that error originated inside the&amp;nbsp;&lt;SPAN style="color: rgb(83, 87, 94); font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 14.399999618530273px; background-color: rgb(255, 255, 255);"&gt;CPUsideRDM.dll.Now Intel developers should perform more in-depth analysis of their code.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 13:40:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975443#M24929</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-18T13:40:25Z</dc:date>
    </item>
    <item>
      <title>Ok, thanks for the help. Any</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975444#M24930</link>
      <description>&lt;P&gt;Ok, thanks for the help. Any word from Intel yet?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 14:32:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975444#M24930</guid>
      <dc:creator>Inge_H_</dc:creator>
      <dc:date>2013-11-18T14:32:30Z</dc:date>
    </item>
    <item>
      <title>You are welcome.</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975445#M24931</link>
      <description>&lt;P&gt;You are welcome.&lt;/P&gt;

&lt;P&gt;Hopefully Intel devs will look at this annoying issue.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 17:44:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975445#M24931</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-18T17:44:38Z</dc:date>
    </item>
    <item>
      <title>I have posted some</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975446#M24932</link>
      <description>&lt;P&gt;I have posted some information about this issue in this thread &lt;A href="http://software.intel.com/en-us/forums/topic/488411#comment-1771183" target="_blank"&gt;http://software.intel.com/en-us/forums/topic/488411#comment-1771183&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2013 09:26:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975446#M24932</guid>
      <dc:creator>Poeter__Manuel</dc:creator>
      <dc:date>2013-11-20T09:26:26Z</dc:date>
    </item>
    <item>
      <title>Inge H., the workaround from</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975447#M24933</link>
      <description>&lt;P&gt;Inge H., the workaround from Steve Lionel in topic&amp;nbsp;&lt;A href="http://software.intel.com/en-us/forums/topic/494680"&gt;http://software.intel.com/en-us/forums/topic/494680&lt;/A&gt;&amp;nbsp;worked for me. Steve also mentions that the issue will be resolved by an update to be released in Jan. 2014.&amp;nbsp;Thank your for posting a way to easily reproduce the problem.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 18:35:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975447#M24933</guid>
      <dc:creator>Nathan_K_</dc:creator>
      <dc:date>2013-11-27T18:35:02Z</dc:date>
    </item>
    <item>
      <title>Root cause of the stack</title>
      <link>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975448#M24934</link>
      <description>&lt;P&gt;Root cause of the stack overflow was MIC debugging integration.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 19:57:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/throw-std-exception-crashes-Visual-Studio-2013-with-Intel/m-p/975448#M24934</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-11-27T19:57:33Z</dc:date>
    </item>
  </channel>
</rss>

