Overview
Comment: | Remove OFThreadPool
This should not be part of the 1.0 API, as it's unclear how useful it |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | 1.0 |
Files: | files | file ages | folders |
SHA3-256: |
38cf0b9cef8789eb549b5282c5dfe582 |
User & Date: | js on 2019-12-15 15:37:44 |
Other Links: | branch diff | manifest | tags |
Context
2021-04-08
| ||
01:33 | Add back OFThreadPool check-in: 116375820d user: js tags: 1.0 | |
2020-01-08
| ||
02:29 | Merge branch 'master' into 1.0 check-in: e7e1e1c6c5 user: js tags: 1.0 | |
2019-12-15
| ||
15:37 | Remove OFThreadPool check-in: 38cf0b9cef user: js tags: 1.0 | |
15:37 | Merge branch 'master' into 1.0 check-in: 11e303eb3b user: js tags: 1.0 | |
Changes
Modified src/Makefile from [32504c7040] to [ea5aab3067].
︙ | ︙ | |||
135 136 137 138 139 140 141 | OFStreamSocket.m \ OFTCPSocket.m \ OFUDPSocket.m \ socket.m SRCS_THREADS = OFCondition.m \ OFMutex.m \ OFRecursiveMutex.m \ | < | 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | OFStreamSocket.m \ OFTCPSocket.m \ OFUDPSocket.m \ socket.m SRCS_THREADS = OFCondition.m \ OFMutex.m \ OFRecursiveMutex.m \ condition.m \ mutex.m \ thread.m \ tlskey.m SRCS_WINDOWS = OFWin32ConsoleStdIOStream.m \ OFWindowsRegistryKey.m |
︙ | ︙ |
Deleted src/OFThreadPool.h version [a9d1ed6153].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted src/OFThreadPool.m version [ff320a5fa0].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Modified src/ObjFW.h from [fb83a9c085] to [e3a54792ac].
︙ | ︙ | |||
241 242 243 244 245 246 247 | #import "OFLocking.h" #import "OFThread.h" #import "once.h" #ifdef OF_HAVE_THREADS # import "thread.h" # import "mutex.h" # import "condition.h" | < | 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | #import "OFLocking.h" #import "OFThread.h" #import "once.h" #ifdef OF_HAVE_THREADS # import "thread.h" # import "mutex.h" # import "condition.h" # import "OFMutex.h" # import "OFRecursiveMutex.h" # import "OFCondition.h" #endif #import "base64.h" #import "crc16.h" |
︙ | ︙ |