summaryrefslogtreecommitdiff
path: root/lib/librthread/rthread.h
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2005-12-03 18:16:20 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2005-12-03 18:16:20 +0000
commitf8598074c9df8821312f2c4a7cea9ba772625f82 (patch)
tree919fd1834c7d3b53c19dbfd42833240e246d4d45 /lib/librthread/rthread.h
parente9242d9ec62b39f3a6284080e22c1dc917876df5 (diff)
add userland thread library. incomplete, but functional
Diffstat (limited to 'lib/librthread/rthread.h')
-rw-r--r--lib/librthread/rthread.h111
1 files changed, 111 insertions, 0 deletions
diff --git a/lib/librthread/rthread.h b/lib/librthread/rthread.h
new file mode 100644
index 00000000000..3deec5835d5
--- /dev/null
+++ b/lib/librthread/rthread.h
@@ -0,0 +1,111 @@
+/* $OpenBSD: rthread.h,v 1.1 2005/12/03 18:16:19 tedu Exp $ */
+/*
+ * Copyright (c) 2004 Ted Unangst <tedu@openbsd.org>
+ * All Rights Reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+/*
+ * Private data structures that back up the typedefs in pthread.h.
+ * Since only the thread library cares about their size or arrangement,
+ * it should be possible to switch libraries without relinking.
+ */
+
+struct stack {
+ void *sp;
+ void *base;
+ size_t len;
+};
+
+typedef struct semaphore {
+ volatile int waitcount;
+ volatile int value;
+ _spinlock_lock_t lock;
+} *sem_t;
+
+struct pthread_mutex {
+ struct semaphore sem;
+ int type;
+ pthread_t owner;
+ int count;
+};
+
+struct pthread_mutex_attr {
+ int type;
+};
+
+struct pthread_cond {
+ struct semaphore sem;
+};
+
+struct pthread_cond_attr {
+ int shared;
+};
+
+struct pthread_rwlock {
+ _spinlock_lock_t lock;
+ int readers;
+ int writer;
+ struct semaphore sem;
+};
+
+struct pthread_rwlockattr {
+ int dummy;
+};
+
+struct pthread_attr {
+ size_t stack_size;
+ int detach_state;
+ int contention_scope;
+ int sched_policy;
+ struct sched_param sched_param;
+ int sched_inherit;
+};
+
+struct rthread_key {
+ int keyid;
+ struct rthread_key *next;
+ void (*destructor)(void *);
+};
+
+struct rthread_storage {
+ int keyid;
+ struct rthread_storage *next;
+ void *data;
+};
+
+struct pthread {
+ pid_t tid;
+ struct semaphore donesem;
+ int flags;
+ void *retval;
+ void *(*fn)(void *);
+ void *arg;
+ char name[32];
+ struct stack *stack;
+ pthread_t next;
+ int sched_policy;
+ struct sched_param sched_param;
+ struct rthread_storage *local_storage;
+ int sigpend;
+};
+#define THREAD_DONE 0x001
+#define THREAD_DETACHED 0x002
+
+void _spinlock(_spinlock_lock_t *);
+void _spinunlock(_spinlock_lock_t *);
+int _sem_wait(sem_t, int, int);
+int _sem_wakeup(sem_t);
+int _sem_wakeall(sem_t);
+
+int _atomic_lock(register volatile _spinlock_lock_t *);