shithub: mc

ref: b53309d883b5facd81d37606c49b432833f32b72
dir: /support/acid/myr/

View raw version
// acid support for Myrddin.

// Myrddin doesn't use the Plan 9 ABI, so we
// define our own stack function.
defn myrstk()
{
	local b

	line = pcline(*SP);
	file = pcfile(*SP);
	print(file, ":", line, ":\t", func, "\n");

	b = *BP;
	while *b do {
		line = pcline(*(b + 8));
		file = pcfile(*(b + 8));
		func = fmt(*(b + 8), 'a');
		print(file, ":", line, ":\t", func, "\n");
		b = *b;
	}
}