diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-09-06 23:25:14 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-09-06 23:25:14 +0200 |
commit | b55315c3fd5d745a3c5b15991dfa1c8c5da7a5ae (patch) | |
tree | f8fd9c6d691a00d903cede9ab863d1ff6ff789ff /sys/include | |
parent | 7562da90e562e65156042574e088d4359a8fccba (diff) |
libthread: get rid of tprivalloc()/tprivfree()/tprivdata() and _workerdata() (thanks qrstuv)
these functions where undocumented and unused. especially
tprivfree() was buggy missing a unlock() call. theres not
much point in supporting these functions as theres
threaddata() and procdata().
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/thread.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/include/thread.h b/sys/include/thread.h index 5e02dcc3e..74deb994c 100644 --- a/sys/include/thread.h +++ b/sys/include/thread.h @@ -103,9 +103,6 @@ int threadpid(int); int threadsetgrp(int); /* set thread group, return old */ void threadsetname(char *fmt, ...); Channel*threadwaitchan(void); -int tprivalloc(void); -void tprivfree(int); -void **tprivaddr(int); void yield(void); #pragma varargck argpos threadsetname 1 |