aboutsummaryrefslogtreecommitdiffstats
path: root/thread.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-03-20 07:31:33 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-03-20 07:31:33 +0000
commit9288c604585993b787b4552b3f7f3f5ad1cd1c81 (patch)
treeab24bff16e3bfdfb0d3214d1f3ae2eac95d133aa /thread.h
parent42fbc61ad0f0f9d165c19a0e8aa33b9d5f7f303b (diff)
downloadlcd4linux-9288c604585993b787b4552b3f7f3f5ad1cd1c81.tar.gz
[lcd4linux @ 2004-03-20 07:31:32 by reinelt]
support for HD66712 (which has a different RAM layout) further threading development git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@405 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/thread.h b/thread.h
index 62a35d5..a15a9f3 100644
--- a/thread.h
+++ b/thread.h
@@ -1,4 +1,4 @@
-/* $Id: thread.h,v 1.1 2004/03/19 06:37:47 reinelt Exp $
+/* $Id: thread.h,v 1.2 2004/03/20 07:31:33 reinelt Exp $
*
* thread handling (mutex, shmem, ...)
*
@@ -26,6 +26,10 @@
*
*
* $Log: thread.h,v $
+ * Revision 1.2 2004/03/20 07:31:33 reinelt
+ * support for HD66712 (which has a different RAM layout)
+ * further threading development
+ *
* Revision 1.1 2004/03/19 06:37:47 reinelt
* asynchronous thread handling started
*
@@ -42,6 +46,6 @@ void mutex_destroy (int semid);
int shm_create (void **buffer, int size);
void shm_destroy (int shmid);
-int thread_create (void (*thread)(void));
+int thread_create (char *name, void (*thread)(char *name));
#endif