This file contains 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
Device 0 (VID=18d1 and PID=4ee2) is UNKNOWN. | |
Please report this VID/PID and the device model to the libmtp development team | |
FUSE library version: 2.9.2 | |
nullpath_ok: 0 | |
nopath: 0 | |
utime_omit_ok: 0 | |
unique: 1, opcode: INIT (26), nodeid: 0, insize: 56, pid: 0 | |
INIT: 7.20 | |
flags=0x000017fb | |
max_readahead=0x00020000 |
This file contains 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
#include <stdio.h> | |
#include <malloc.h> | |
int main(int argc, char** argv) | |
{ | |
struct mallinfo mi; | |
mi = mallinfo(); | |
printf("BEFORE:\nuordblks:%d\nhblkhd:%d\n\n", mi.uordblks, mi.hblkhd); | |
malloc_stats(); |
This file contains 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
upload=true&script=true&cardinfo= | |
!!################################ | |
!!ALSA Information Script v 0.4.63 | |
!!################################ | |
!!Script ran on: Sun Apr 27 01:53:53 UTC 2014 | |
!!Linux Distribution | |
!!------------------ |
This file contains 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
upload=true&script=true&cardinfo= | |
!!################################ | |
!!ALSA Information Script v 0.4.63 | |
!!################################ | |
!!Script ran on: Sun Apr 27 10:27:08 UTC 2014 | |
!!Linux Distribution | |
!!------------------ |
This file contains 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
/* This small program is a trivial example showing | |
* how to use a few bits of the STP C-API | |
* | |
*/ | |
#include <stp/c_interface.h> | |
#include <stdio.h> | |
void handleQuery(VC handle, Expr queryExpr); | |
int main(int argc, char** argv) |
This file contains 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
upload=true&script=true&cardinfo= | |
!!################################ | |
!!ALSA Information Script v 0.4.63 | |
!!################################ | |
!!Script ran on: Mon May 5 08:32:21 UTC 2014 | |
!!Linux Distribution | |
!!------------------ |
This file contains 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
upload=true&script=true&cardinfo= | |
!!################################ | |
!!ALSA Information Script v 0.4.63 | |
!!################################ | |
!!Script ran on: Mon May 5 08:33:37 UTC 2014 | |
!!Linux Distribution | |
!!------------------ |
This file contains 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
diff --git a/utils/lit/lit/TestRunner.py b/utils/lit/lit/TestRunner.py | |
index af6e383..ca87b05 100644 | |
--- a/utils/lit/lit/TestRunner.py | |
+++ b/utils/lit/lit/TestRunner.py | |
@@ -144,13 +144,16 @@ def executeShCmd(cmd, cfg, cwd, results): | |
named_temp_files.append(f.name) | |
args[i] = f.name | |
- procs.append(subprocess.Popen(args, cwd=cwd, | |
- executable = executable, |
This file contains 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
# Maintainer: d.woffinden | |
# Contributor: Dan Liew <[email protected]> | |
pkgbase=('z3-git') | |
pkgname=('z3-git' 'z3py-git' 'z3-sharp-git' 'z3-java-git') | |
pkgver=4.4.1.r308.g9e28819 | |
pkgrel=1 | |
pkgdesc="Z3 is a high-performance theorem prover being developed at Microsoft Research" | |
arch=('i686' 'x86_64') | |
url="https://github.com/delcypher/z3-1.git" | |
license=('MIT') |
This file contains 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
/* Demonstration of a poor man's try-catch construct in C99 using | |
* C preprocessor macros to make the syntax look vaguely like | |
* try-catch constructs in other lagnuages. This implementation | |
* is incredibly bad because C macros are very error prone and | |
* this implementation cannot have nested try-catch constructs | |
*/ | |
#include <stdio.h> | |
#include <assert.h> | |
#define TRY ; _Pragma("pop_macro(\"EXCEPTION_EXIT_LABEL\")") |
OlderNewer