Bitonic Sort -- code

bitonic.c
bitonic sort
Three sequential implementations and one parallel version using pthreads. A main function for testing the code. See the "usage" comment at the beginning of the file for how to run it.
bitonic.h
extern declarations for the functions exported by bitonic.c.
h.h
An include file to include everything related to this program
Makefile
How to compile and link this stuff.
mymem.c
Wrappers of malloc(...) and free(...) to print stack traces on memory management/heap-corruption errors.
mymem.h
extern declarations for the functions exported by mymem.c.