Skip to content

Instantly share code, notes, and snippets.

View schani's full-sized avatar
⌨️
I just sit at my computer and curse a bit.

Mark Probst schani

⌨️
I just sit at my computer and curse a bit.
View GitHub Profile

eager sweep, non-conc

world stop
     1
value  ------------- Distribution ------------- count    
   64 |                                         0        
  128 |@                                        1        
  256 |                                         0        
  512 |                                         0        
 1024 |                                         0        
0x0000000100217830 <mono_lock_free_queue_dequeue+0>: push %rbp
0x0000000100217831 <mono_lock_free_queue_dequeue+1>: mov %rsp,%rbp
0x0000000100217834 <mono_lock_free_queue_dequeue+4>: push %r15
0x0000000100217836 <mono_lock_free_queue_dequeue+6>: push %r14
0x0000000100217838 <mono_lock_free_queue_dequeue+8>: push %r13
0x000000010021783a <mono_lock_free_queue_dequeue+10>: push %r12
0x000000010021783c <mono_lock_free_queue_dequeue+12>: push %rbx
0x000000010021783d <mono_lock_free_queue_dequeue+13>: sub $0x8,%rsp
0x0000000100217841 <mono_lock_free_queue_dequeue+17>: mov %rdi,%rbx
0x0000000100217844 <mono_lock_free_queue_dequeue+20>: lea 0x30(%rdi),%r14
#!/bin/bash
BENCH_SIZE=no
BENCH_WALL_CLOCK=no
BENCH_PAUSE_TIME=yes
if [ "x$1" = "x" ] ; then
echo "Usage: speedtest.sh <conf-file>"
exit 1
fi
WARNING: The add-in 'MonoDevelop.MacDev,3.1.0' could not be updated because some of its dependencies are missing or not compatible:
required: MonoDevelop.Ide,3.1.0, found: MonoDevelop.Ide,4.0
required: MonoDevelop.Core,3.1.0, found: MonoDevelop.Core,4.0
ERROR [2013-03-06 16:56:01Z]: Error setting process name
System.DllNotFoundException: libc.dylib
at (wrapper managed-to-native) MonoDevelop.Core.Runtime:prctl (int,byte[],intptr,intptr,intptr)
at MonoDevelop.Core.Runtime.unixSetProcessName (System.String name) [0x00000] in <filename unknown>:0
at MonoDevelop.Core.Runtime.SetProcessName (System.String name) [0x00000] in <filename unknown>:0
MonoDevelop Add-in Setup Utility
WARNING: The add-in 'MonoDevelop.MacDev,3.1.0' could not be updated because some of its dependencies are missing or not compatible:
/Users/schani/Work/mono/bockbuild/profiles/monodevelop-mac-dev/build-root/_install/lib/mono/4.0/Microsoft.Common.targets: warning : Found a conflict between : 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Using 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' reference.
/Users/schani/Work/mono/bockbuild/profiles/monodevelop-mac-dev/build-root/_install/lib/mono/4.0/Microsoft.Common.targets: warning : Found a conflict between : 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Using 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' reference.
/Users/schani/Work/mono/bockbuild/profiles/monodevelop-mac-dev/build-root/_install/lib/mono/4.0/Microsoft.Common.targets: warning : Found a conflict between : 'System.Core, Version=4.0.0.0, Culture
λ ~/Work/mono/monodevelop/md-addins/ (54f532e...) make
make -C Xamarin.Designer.iOS bootstrap
make[2]: Nothing to be done for `all'.
git submodule update --init --recursive || exit 1
xbuild /verbosity:quiet /nologo /property:CodePage=65001 md-addins.sln /property:Configuration=DebugMac
/Users/schani/Work/mono/bockbuild/profiles/monodevelop-mac-dev/build-root/_install/lib/mono/4.0/Microsoft.Common.targets: warning : Found a conflict between : 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Using 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' reference.
/Users/schani/Work/mono/bockbuild/profiles/monodevelop-mac-dev/build-root/_install/lib/mono/4.0/Microsoft.Common.targets: warning : Found a conflict between : 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Usin
λ ~/Work/mono/monodevelop/monodevelop/ (a6edf57...) make
if test -d ".git"; then \
git submodule update --init --recursive || exit 1; \
fi
Making all in external
make -C monomac/src
make[3]: `all' is up to date.
Making all in .
Updated build information
Git revision: a6edf5779c53c244725b7c3e38c5a342a0208549
colors = [orange, blue, red, green, black, purple]
fractal = (x, y, r, depth) =>
e = ellipse x, y, r, r
e.fill = gradient(colors[depth], colors[depth+1])
add e
if depth > 0
for d in [-2*r, 2*r]
fractal x+d, y , r/3, depth-1
fractal x , y+d, r/3, depth-1
#!/usr/bin/env python
import random
class Node:
def __init__ (self, l, r):
self.left = l
self.right = r
self.freed = False
def free (self):
diff --git a/samples/reverse.cljc b/samples/reverse.cljc
new file mode 100644
index 0000000..063e0df
--- /dev/null
+++ b/samples/reverse.cljc
@@ -0,0 +1,5 @@
+(ns cljc.user)
+(defn -main [& args]
+ (doseq [arg args]
+ (println (reverse arg))