Differences From Artifact [7cccc445b9]:
- File src/OFThreadPool.m — part of check-in [c223ace803] at 2012-04-03 15:30:36 on branch trunk — Don't compare blocks to nil. (user: js, size: 6978) [annotate] [blame] [check-ins using] [more...]
To Artifact [59038be60b]:
- File src/OFThreadPool.m — part of check-in [6729a18ba0] at 2012-05-18 15:59:29 on branch trunk — Add -[OFThreadPool size]. (user: js, size: 7012) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
379 380 381 382 383 384 385 386 | - (void)dispatchWithBlock: (of_thread_pool_block_t)block object: (id)object { [self _dispatchJob: [OFThreadPoolJob jobWithBlock: block object: object]]; } #endif @end | > > > > > | 379 380 381 382 383 384 385 386 387 388 389 390 391 | - (void)dispatchWithBlock: (of_thread_pool_block_t)block object: (id)object { [self _dispatchJob: [OFThreadPoolJob jobWithBlock: block object: object]]; } #endif - (size_t)size { return size; } @end |