Lockable.cc revision 2
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * CDDL HEADER START
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * The contents of this file are subject to the terms of the
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * Common Development and Distribution License (the "License").
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * You may not use this file except in compliance with the License.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * or http://www.opensolaris.org/os/licensing.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * See the License for the specific language governing permissions
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * and limitations under the License.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * When distributing Covered Code, include this CDDL HEADER in each
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * If applicable, add the following below this CDDL HEADER, with the
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * fields enclosed by brackets "[]" replaced with your own identifying
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * information: Portions Copyright [yyyy] [name of copyright owner]
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * CDDL HEADER END
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * Use is subject to license terms.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtisusing namespace std;
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @memo Create a lockable instance and initialize internal locks
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @memo Free up a lockable instance
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @memo Unlock the instance
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @precondition This thread must have locked the instance
1ec68d336ba97cd53f46053ac10401d16014d075Richard Lowe * @postcondition The instance will be unlocked
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @memo Unlock a given mutex lock
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @precondition The lock must be held by this thread
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @postcondition The lock will be released
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @param myMutex The lock to unlock
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtisvoid Lockable::unlock(pthread_mutex_t *myMutex) {
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @memo Lock the instance
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @postcondition The lock will be held by this thread.
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @memo Lock the given mutex lock
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @postcondition The lock will be held by this thread
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtis * @param myMutex The mutex lock to take
25c28e83beb90e7c80452a7c818c5e6f73a07dc8Piotr Jasiukajtisvoid Lockable::lock(pthread_mutex_t *myMutex) {
if (status) {
case EFAULT:
case EINVAL:
case EBUSY:
case EOWNERDEAD:
case ELOCKUNMAPPED:
case ENOTRECOVERABLE:
} while (status);