Artifact f657c2f2e0aa7433f2cc7637dd61eeb0a2b835805ce2aca7e705df4de6d2f169:
- 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]
/* * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 * Jonathan Schleifer <js@heap.zone> * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFException.h" @class OFSandbox; /*! * @class OFSandboxActivationFailedException \ * OFSandboxActivationFailedException.h \ * ObjFW/OFSandboxActivationFailedException.h * * @brief An exception indicating that sandboxing the process failed. */ @interface OFSandboxActivationFailedException: OFException { 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; /*! * @brief Creates a new, autoreleased sandboxing failed exception. * * @param sandbox The sandbox which could not be activated * @param errNo The errno of the error that occurred * @return A new, autoreleased sandboxing failed exception */ + (instancetype)exceptionWithSandbox: (OFSandbox*)sandbox errNo: (int)errNo; /*! * @brief Initializes an already allocated sandboxing failed exception. * * @param sandbox The sandbox which could not be activated * @param errNo The errno of the error that occurred * @return An initialized sandboxing failed exception */ - initWithSandbox: (OFSandbox*)sandbox errNo: (int)errNo; @end