tinythread

tiny threading library for linux
git clone git://git.2f30.org/tinythread
Log | Files | Refs | README | LICENSE

commit bda59eb442f5361d1d565423b4d4f7fcea0247f0
parent d5cc436d0ed8ad6e9e5b4abfff6482c094868a28
Author: sin <sin@2f30.org>
Date:   Mon, 23 Sep 2013 11:51:53 +0100

Add LICENSE details

Diffstat:
Mthread.c | 1+
Mthread.h | 1+
Mthreadtest.c | 1+
3 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/thread.c b/thread.c @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <sys/wait.h> #include <sys/mman.h> #include <sched.h> diff --git a/thread.h b/thread.h @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #ifndef THREADLIB_H #define THREADLIB_H diff --git a/threadtest.c b/threadtest.c @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <unistd.h> #include <stdio.h>