Fredrik Ehnbom

Results 78 comments of Fredrik Ehnbom

It might be worth just looking directly at B-Tree or other data structure implementations too.

Number 5 from https://github.com/exclipy/clang_indexer/wiki/Requirements-and-Design: ``` c char** find_references(char* usr), ``` IMO, char*\* shouldn't be used directly but rather hidden in a custom type and accessed via function calls. I suggest...

FWIW I wrote an ARM JIT for AS back in 2009, but I never finished it and haven't touched it since neither: https://github.com/quarnster/asarmjit.

> Submodules aren't checked out by go get either. The [documentation](https://golang.org/cmd/go/#hdr-Download_and_install_packages_and_dependencies) says it does: > If the vendoring experiment is enabled (see 'go help gopath'), then when go get checks...

Indeed, and that issue appears to be [golang/go#12573](https://github.com/golang/go/issues/12573). The workaround of `go get ...` followed by `go get -u ...` appears to work though.

Good point, might want to open up a go bug for that if there isn't one already

Though I guess the situation isn't obvious if both packages explicitly _require_ different versions of that same package.

Note that [python 3 can make a call](http://hg.python.org/cpython/file/e0f86c3b3685/Modules/faulthandler.c#l1093) to sigaltstack [even if](http://hg.python.org/cpython/file/e0f86c3b3685/Python/pythonrun.c#l367) it's [requested](http://hg.python.org/cpython/file/e0f86c3b3685/Python/pythonrun.c#l375) that signal handler's aren't installed. C libraries messing with the signal handlers [is not supported](https://code.google.com/p/go/issues/detail?id=4216) and...

Is there no .tar.bz2, tar.gz or .zip version?

The current operation is fine for me, but these more advanced options should probably be added back in. Not sure I have the means to verify that everything is correct...