summaryrefslogtreecommitdiff
path: root/src/libpthread.c
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2018-02-19 15:51:56 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2018-02-19 15:51:56 +0200
commitda200d3ac0204abadd5992820486321970d689b8 (patch)
tree31b559749ff7487a420cd7f1b1b7a67aa0a9d021 /src/libpthread.c
parent09fc4ea761b6b774a6423bdfd92049be78e32a49 (diff)
refactoring, fixing and implementing
messy commits yay
Diffstat (limited to 'src/libpthread.c')
-rw-r--r--src/libpthread.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libpthread.c b/src/libpthread.c
index b09a0ba..3136632 100644
--- a/src/libpthread.c
+++ b/src/libpthread.c
@@ -73,6 +73,22 @@ is_mapped(void *mem, const size_t sz)
return !mincore(mem, sz, vec);
}
+void
+bionic___pthread_cleanup_push(void *c, void *routine, void *arg)
+{
+}
+
+void
+bionic___pthread_cleanup_pop(void *c, int execute)
+{
+}
+
+int
+bionic_pthread_cond_timedwait_relative_np(bionic_cond_t *cond, bionic_mutex_t *mutex, const struct timespec *reltime)
+{
+ return 0;
+}
+
int
bionic_pthread_cond_timedwait_monotonic_np(bionic_cond_t *cond, bionic_mutex_t *mutex, const struct timespec *abstime)
{