summaryrefslogtreecommitdiffstats
path: root/src/wrap.h
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-05-30 17:39:11 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-05-30 17:39:11 -0400
commit2a76dc18e9da8908dbb0b0464d442ac26adcacce (patch)
tree8778d6676bfeb2e3464b7fa510c9651f3edc320d /src/wrap.h
parentaa45131dda9041dd3c0c3a652da24f4bde43aa40 (diff)
downloadslapi-nis-2a76dc18e9da8908dbb0b0464d442ac26adcacce.tar.gz
slapi-nis-2a76dc18e9da8908dbb0b0464d442ac26adcacce.tar.xz
slapi-nis-2a76dc18e9da8908dbb0b0464d442ac26adcacce.zip
- sort out threading startup/shutdown and rwlocking for both NSPR and pthreads
Diffstat (limited to 'src/wrap.h')
-rw-r--r--src/wrap.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/wrap.h b/src/wrap.h
new file mode 100644
index 0000000..d5cc434
--- /dev/null
+++ b/src/wrap.h
@@ -0,0 +1,40 @@
+/*
+ * Copyright 2008 Red Hat, Inc.
+ *
+ * This Program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This Program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this Program; if not, write to the
+ *
+ * Free Software Foundation, Inc.
+ * 59 Temple Place, Suite 330
+ * Boston, MA 02111-1307 USA
+ *
+ */
+
+#ifndef wrap_h
+#define wrap_h
+
+struct wrapped_thread;
+struct wrapped_rwlock;
+
+struct wrapped_thread * wrap_start_thread(void * (*fn)(struct wrapped_thread *),
+ void *arg);
+void *wrap_stop_thread(struct wrapped_thread *t);
+void *wrap_thread_arg(struct wrapped_thread *t);
+int wrap_thread_stopfd(struct wrapped_thread *t);
+
+struct wrapped_rwlock *wrap_new_rwlock(void);
+void wrap_free_rwlock(struct wrapped_rwlock *rwlock);
+void wrap_rwlock_rdlock(struct wrapped_rwlock *rwlock);
+void wrap_rwlock_wrlock(struct wrapped_rwlock *rwlock);
+void wrap_rwlock_unlock(struct wrapped_rwlock *rwlock);
+
+#endif