Skip to content

Instantly share code, notes, and snippets.

{
var bufferNames = new[]{ "MapData" };
bool done = false;
mConnectedStorage.GetAsync(bufferNames, (storage,op,view) => {
if (op.Success)
{
foreach( bufferName in bufferNames )
{
byte[] buffer = view.GetBuffer( bufferName );
// do something fancy shmancy with the data
[Conditional ("DEBUG")]
void SmoMoAssert (bool condition, string messageFormat, params object[] messageParams)
{
if (!condition)
Debug.LogError ("Assertion failed: " + string.Format (messageFormat, messageParams));
}
User's notes
===============================================================================================
===============================================================================================
Output of command: ''/home/levi/.local/share/Steam/SteamApps/common/the witcher 2/crash_reporting/minidump_stackwalk' '/home/levi/.local/share/cdprojektred/witcher2//1e5b3df4-7b27-869c-75897d4b-28fa64f2.dmp' '/home/levi/.local/share/Steam/SteamApps/common/the witcher 2/crash_reporting/symbols/''
===============================================================================================
Operating system: Linux
0.0.0 Linux 3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014 x86_64
CPU: x86
GenuineIntel family 6 model 58 stepping 9
User's notes
===============================================================================================
===============================================================================================
Output of command: ''/home/levi/.local/share/Steam/SteamApps/common/the witcher 2/crash_reporting/minidump_stackwalk' '/home/levi/.local/share/cdprojektred/witcher2//7c9763bd-5145-3253-75fcc606-2d584474.dmp' '/home/levi/.local/share/Steam/SteamApps/common/the witcher 2/crash_reporting/symbols/''
===============================================================================================
Operating system: Linux
0.0.0 Linux 3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014 x86_64
CPU: x86
GenuineIntel family 6 model 58 stepping 9
diff --git a/mono/io-layer/processes.c b/mono/io-layer/processes.c
index 02665dd..25af22d 100644
--- a/mono/io-layer/processes.c
+++ b/mono/io-layer/processes.c
@@ -1723,6 +1723,7 @@ gboolean GetExitCodeProcess (gpointer process, guint32 *code)
if(code==NULL) {
return(FALSE);
}
+ *code = STILL_ACTIVE;
static string CombinePaths (params string[] paths)
{
if (null == paths)
return string.Empty;
return string.Join (Path.DirectorySeparatorChar.ToString (), paths);
}
diff --git a/mono/mini/debugger-agent.c b/mono/mini/debugger-agent.c
index ee46f27..36a5cef 100644
--- a/mono/mini/debugger-agent.c
+++ b/mono/mini/debugger-agent.c
@@ -1198,11 +1198,9 @@ stop_debugger_thread ()
if (!debugger_thread_exited)
{
#ifdef HOST_WIN32
- if (WAIT_TIMEOUT == WaitForSingleObject(debugger_thread_exited_cond, 0)) {
- mono_mutex_unlock (&debugger_thread_exited_mutex);
diff --git a/main/src/addins/CBinding/CBinding.addin.xml b/main/src/addins/CBinding/CBinding.addin.xml
index 6776a1b..0158b43 100644
--- a/main/src/addins/CBinding/CBinding.addin.xml
+++ b/main/src/addins/CBinding/CBinding.addin.xml
@@ -15,6 +15,7 @@
<Addin id = "Deployment.Linux" version = "2.6"/>
<Addin id = "SourceEditor2" version = "2.6" />
<Addin id = "DesignerSupport" version = "2.6" />
+ <Addin id = "Refactoring" version = "2.6" />
</Dependencies>
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<!-- This is required by the subversion add-in for windows, which uses a mixed mode assembly built with .NET 2.0 -->
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
</startup>
</configuration>
diff --git a/bin/modules/c-autodetect.jam b/bin/modules/c-autodetect.jam
index ac6af3e..e384296 100644
--- a/bin/modules/c-autodetect.jam
+++ b/bin/modules/c-autodetect.jam
@@ -56,7 +56,7 @@ rule C.ToolChain THE_COMPILER : THE_PLATFORM : THE_CONFIG
return ;
}
- Exit * No supported build platform found on this computer. ;
+ echo "warning: No supported C build platform found on this computer." ;