Overview
| Comment: | OFThread: Fix the name accidentally being readonly |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 0.90 |
| Files: | files | file ages | folders |
| SHA3-256: |
83c4d83c7d978d069da92dc19c05f192 |
| User & Date: | js on 2017-10-07 11:22:31 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-10-07
| ||
| 15:14 | OFThread: Fix setting the name on the wrong thread (check-in: 1a502ac38c user: js tags: 0.90) | |
| 11:22 | OFThread: Fix the name accidentally being readonly (check-in: 83c4d83c7d user: js tags: 0.90) | |
| 10:50 | OFThread: Mark the thread block nullable (check-in: ead26485f6 user: js tags: 0.90) | |
Changes
Modified src/OFThread.h from [24f32e5db8] to [f66e3d5e03].
| ︙ | ︙ | |||
76 77 78 79 80 81 82 | @private OFString *_Nullable _name; } /*! * The name for the thread to use when starting it. */ | | | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
@private
OFString *_Nullable _name;
}
/*!
* The name for the thread to use when starting it.
*/
@property OF_NULLABLE_PROPERTY (copy, nonatomic) OFString *name;
# ifdef OF_HAVE_BLOCKS
/*!
* The block to execute in the thread.
*/
@property OF_NULLABLE_PROPERTY (readonly, nonatomic)
of_thread_block_t threadBlock;
|
| ︙ | ︙ |