This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/dash | |
| ltrace -x runtime.mallocgc -f -ttt -o malloc.trace $@ | |
| python parse.py malloc.trace |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| x protocol write error: write unix /tmp/.X11-unix/X0: broken pipe | |
| panic: runtime error: send on closed channel | |
| goroutine 12 [running]: | |
| code.google.com/p/jamslam-x-go-binding/xgb.(*Conn).request(0x1885e000, 0x18a5a2a0, 0x10, 0x10, 0x0, ...) | |
| /tmp/src/code.google.com/p/jamslam-x-go-binding/xgb/xgb.go:200 +0x5d | |
| code.google.com/p/jamslam-x-go-binding/xgb.(*Conn).sendRequest(0x1885e000, 0x0, 0xb59dad64, 0x1, 0x1, ...) | |
| /tmp/src/code.google.com/p/jamslam-x-go-binding/xgb/xgb.go:212 +0x54 | |
| code.google.com/p/jamslam-x-go-binding/xgb.(*Conn).CreatePixmap(0x1885e000, 0x3800018, 0x380000a, 0xb1, 0x14001e0, ...) | |
| /tmp/src/code.google.com/p/jamslam-x-go-binding/xgb/xproto.go:2685 +0x3bf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ GOMAXPROCS=8 ltrace -ttt -f -x runtime.mallocgc -o malloc.trace go get -v github.com/petar/GoLLRB/llrb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void sub_2648(void) { | |
| rax = *(rsi + 0x8); | |
| rbx = rdi; | |
| if (*(rsi + 0x8) != 0x0) { | |
| r14 = rsi; | |
| rdi = rax; | |
| do { | |
| putenv(rdi); | |
| rdi = *(r14 + 0x10); | |
| r14 = r14 + 0x8; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Delivered-To: myandrew@gmail.com | |
| Received: by 10.68.32.231 with SMTP id m7csp157647pbi; | |
| Wed, 30 May 2012 01:51:25 -0700 (PDT) | |
| Received: by 10.50.34.200 with SMTP id b8mr332113igj.50.1338367885297; | |
| Wed, 30 May 2012 01:51:25 -0700 (PDT) | |
| Return-Path: <maribeth.avery@campusyolk.com> | |
| Received: from mx2.andrew.cmu.edu (MX2.ANDREW.CMU.EDU. [128.2.11.36]) | |
| by mx.google.com with ESMTPS id bd9si18883889icb.2.2012.05.30.01.51.24 | |
| (version=TLSv1/SSLv3 cipher=OTHER); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| areece@indium:~$ klist | |
| Credentials cache: FILE:/tmp/krb5cc_1680_g18655 | |
| Principal: areece@CLUB.CC.CMU.EDU | |
| Issued Expires Principal | |
| Jun 4 22:37:29 Jun 5 08:37:29 krbtgt/CLUB.CC.CMU.EDU@CLUB.CC.CMU.EDU | |
| Jun 4 22:37:29 Jun 5 08:37:29 afs/club.cc.cmu.edu@CLUB.CC.CMU.EDU |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void ar_free(void* ptr) { | |
| assertf(malloc_initialized, "Free called before initialization"); | |
| assert_notnull(ptr); | |
| slab_t* slab = ptr_to_slab(ptr); | |
| assert_notnull(slab); | |
| tcache_t* cache = get_tcache(); | |
| // Avoid false sharing by only caching blocks from our arena. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ sudo ls /var/lib/quassel/ | |
| quasselCert.pem quasselcore.conf | |
| $ sudo cat /var/lib/quassel/quasselcore.conf | |
| [Config] | |
| Version=1 | |
| $ sudo view /var/lib/quassel/quasselCert.pem | |
| $ sudo quasselcore --add-user --configdir=/var/lib/quassel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifdef FOO | |
| if (x) { | |
| #else | |
| if (x_config) { | |
| #endif | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FLAG_INT(nthreads, 1, "Number of threads to use"); | |
| FLAG_INT(nops, 10000000, "Number of operations to run"); | |
| FLAG_BOOL(baseline, false, "Run baseline with dummy malloc"); | |
| FLAG_BOOL(libc, false, "Run with libc malloc"); | |
| FLAG_BOOL(locked, false, "Run with locked malloc"); | |
| FLAG_BOOL(simple_out, false, "Print simple (machine parseable) output"); |