aboutsummaryrefslogtreecommitdiffstats
path: root/thread.h
diff options
context:
space:
mode:
authorreinelt <>2006-07-12 21:01:41 +0000
committerreinelt <>2006-07-12 21:01:41 +0000
commit356606e9ec6eba20acfac7b1900d581e8a821907 (patch)
tree68fa90bb4f620190a4fd92101fb8fe6904838b7a /thread.h
parentdef7fb22af955b63ca661875d37a608b0b41f8e2 (diff)
downloadlcd4linux-356606e9ec6eba20acfac7b1900d581e8a821907.tar.gz
[lcd4linux @ 2006-07-12 21:01:41 by reinelt]
thread_destroy, minor cleanups
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/thread.h b/thread.h
index badafb4..fcecc89 100644
--- a/thread.h
+++ b/thread.h
@@ -1,4 +1,4 @@
-/* $Id: thread.h,v 1.6 2005/05/08 04:32:45 reinelt Exp $
+/* $Id: thread.h,v 1.7 2006/07/12 21:01:41 reinelt Exp $
*
* thread handling (mutex, shmem, ...)
*
@@ -26,6 +26,9 @@
*
*
* $Log: thread.h,v $
+ * Revision 1.7 2006/07/12 21:01:41 reinelt
+ * thread_destroy, minor cleanups
+ *
* Revision 1.6 2005/05/08 04:32:45 reinelt
* CodingStyle added and applied
*
@@ -62,5 +65,6 @@ int shm_create(void **buffer, const int size);
void shm_destroy(const int shmid, const void *buffer);
int thread_create(const char *name, void (*thread) (void *data), void *data);
+int thread_destroy(const int pid);
#endif