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
Heimdall v1.4.1 | |
Copyright (c) 2010-2014 Benjamin Dobell, Glass Echidna | |
http://www.glassechidna.com.au/ | |
This software is provided free of charge. Copying and redistribution is | |
encouraged. | |
If you appreciate this software and you would like to support future | |
development please consider donating: |
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
require 'dbus' | |
class Exception | |
def pp | |
STDERR.puts self.inspect | |
self.backtrace.each{|l| | |
STDERR.puts " " + l | |
} | |
end | |
end |
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
CFLAGS=-Wall $(shell pkg-config --cflags eldbus ecore eina) | |
LDFLAGS=$(shell pkg-config --libs eldbus ecore eina) | |
all: bttest | |
./bttest | |
.PHONY: all |
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
#define _XOPEN_SOURCE | |
#include <libtree.h> | |
#include <search.h> | |
#include <stdlib.h> | |
#include <limits.h> | |
#include <string.h> | |
#include <assert.h> | |
#include <stdio.h> | |
#define NITEMS 1024 |