Differences From Artifact [d2232b4386]:
- File
src/exceptions/OFSandboxActivationFailedException.h
— part of check-in
[40cf53506a]
at
2017-04-09 18:22:14
on branch trunk
— Add OFSandbox
Only OpenBSD's pledge() is supported so far. (user: js, size: 1783) [annotate] [blame] [check-ins using]
To Artifact [f657c2f2e0]:
- File
src/exceptions/OFSandboxActivationFailedException.h
— part of check-in
[0a73af49f0]
at
2017-04-30 13:35:16
on branch trunk
— Use nonatomic for properties and clean up
This changes retaining behavior, meaning properties are not returned
retained and autoreleased anymore, so a property returned from a getter
now needs to be manually retained and autoreleased before calling the
setter. However, this is rarely the case and not using atomic improves
performance. (user: js, size: 1786) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
30 31 32 33 34 35 36 | OFSandbox *_sandbox; int _errNo; } /*! * The sandbox which could not be activated. */ | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | OFSandbox *_sandbox; int _errNo; } /*! * The sandbox which could not be activated. */ @property (readonly, nonatomic) OFSandbox *sandbox; /*! * The errno of the error that occurred. */ @property (readonly) int errNo; /*! |
︙ | ︙ |