├── .gitignore ├── Makefile ├── README.md ├── threads-i386.s └── threads-x86_64.s /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/pure-linux-threads-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/pure-linux-threads-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/pure-linux-threads-demo/HEAD/README.md -------------------------------------------------------------------------------- /threads-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/pure-linux-threads-demo/HEAD/threads-i386.s -------------------------------------------------------------------------------- /threads-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/pure-linux-threads-demo/HEAD/threads-x86_64.s --------------------------------------------------------------------------------