diff options
author | Rich Felker <dalias@aerifal.cx> | 2020-10-14 19:36:03 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2020-10-14 20:27:12 -0400 |
commit | 373376608394e4227b3a0027d06a8f0b39ddd40d (patch) | |
tree | f0e394fa2ac7ade09aaa2daf4d767981b0986181 /src | |
parent | 85e16aec51c343f64601b70a6081def69b9f87bc (diff) | |
download | musl-373376608394e4227b3a0027d06a8f0b39ddd40d.tar.gz musl-373376608394e4227b3a0027d06a8f0b39ddd40d.tar.bz2 musl-373376608394e4227b3a0027d06a8f0b39ddd40d.tar.xz musl-373376608394e4227b3a0027d06a8f0b39ddd40d.zip |
remove long-unused struct __timer from pthread_impl.h
commit 3990c5c6a40440cdb14746ac080d0ecf8d5d6733 removed the last
reference.
Diffstat (limited to 'src')
-rw-r--r-- | src/internal/pthread_impl.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index 10e29881..394dcb19 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -73,11 +73,6 @@ enum { DT_DETACHED, }; -struct __timer { - int timerid; - pthread_t thread; -}; - #define __SU (sizeof(size_t)/sizeof(int)) #define _a_stacksize __u.__s[0] |