os/graphics/graphicscomposition/openwfcompositionengine/adaptation/src/Platform/OS/symbian/owfmutex.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
 *
sl@0
     3
 * Permission is hereby granted, free of charge, to any person obtaining a
sl@0
     4
 * copy of this software and/or associated documentation files (the
sl@0
     5
 * "Materials"), to deal in the Materials without restriction, including
sl@0
     6
 * without limitation the rights to use, copy, modify, merge, publish,
sl@0
     7
 * distribute, sublicense, and/or sell copies of the Materials, and to
sl@0
     8
 * permit persons to whom the Materials are furnished to do so, subject to
sl@0
     9
 * the following conditions:
sl@0
    10
 * 
sl@0
    11
 * The above copyright notice and this permission notice shall be included
sl@0
    12
 * in all copies or substantial portions of the Materials.
sl@0
    13
 * 
sl@0
    14
 * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
sl@0
    15
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
sl@0
    16
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
sl@0
    17
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
sl@0
    18
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
sl@0
    19
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
sl@0
    20
 * MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
sl@0
    21
 */
sl@0
    22
 
sl@0
    23
sl@0
    24
sl@0
    25
#ifdef __cplusplus
sl@0
    26
extern "C" {
sl@0
    27
#endif
sl@0
    28
sl@0
    29
sl@0
    30
#include <pthread.h>
sl@0
    31
#include <errno.h>
sl@0
    32
#include <stdlib.h>
sl@0
    33
sl@0
    34
#include "owfmemory.h"
sl@0
    35
#include "owfmutex.h"
sl@0
    36
sl@0
    37
sl@0
    38
sl@0
    39
#define MUTEX(x)        (pthread_mutex_t*)(*x)
sl@0
    40
sl@0
    41
OWF_API_CALL OWFint
sl@0
    42
OWF_Mutex_Init(OWF_MUTEX* mutex)
sl@0
    43
{
sl@0
    44
    if (!mutex)
sl@0
    45
    {
sl@0
    46
        return EINVAL;
sl@0
    47
    }
sl@0
    48
sl@0
    49
    *mutex = xalloc(1, sizeof(pthread_mutex_t));
sl@0
    50
    if (!*mutex)
sl@0
    51
    {
sl@0
    52
        return ENOMEM;
sl@0
    53
    }
sl@0
    54
    return pthread_mutex_init(MUTEX(mutex), NULL);
sl@0
    55
}
sl@0
    56
sl@0
    57
OWF_API_CALL OWFint
sl@0
    58
OWF_Mutex_Destroy(OWF_MUTEX* mutex)
sl@0
    59
{
sl@0
    60
    OWFint             err = EINVAL;
sl@0
    61
sl@0
    62
    if (!mutex)
sl@0
    63
    {
sl@0
    64
        return EINVAL;
sl@0
    65
    }
sl@0
    66
sl@0
    67
    if (*mutex)
sl@0
    68
    {
sl@0
    69
        err = pthread_mutex_destroy(MUTEX(mutex));
sl@0
    70
        xfree(*mutex);
sl@0
    71
        *mutex = NULL;
sl@0
    72
    }
sl@0
    73
    return err;
sl@0
    74
}
sl@0
    75
sl@0
    76
OWF_API_CALL OWFint
sl@0
    77
OWF_Mutex_Lock(OWF_MUTEX* mutex)
sl@0
    78
{
sl@0
    79
    if (!(mutex && *mutex))
sl@0
    80
    {
sl@0
    81
        return EINVAL;
sl@0
    82
    }
sl@0
    83
sl@0
    84
    return pthread_mutex_lock(MUTEX(mutex));
sl@0
    85
}
sl@0
    86
sl@0
    87
OWF_API_CALL OWFint
sl@0
    88
OWF_Mutex_Unlock(OWF_MUTEX* mutex)
sl@0
    89
{
sl@0
    90
    if (!(mutex && *mutex))
sl@0
    91
    {
sl@0
    92
        return EINVAL;
sl@0
    93
    }
sl@0
    94
    return pthread_mutex_unlock(MUTEX(mutex));
sl@0
    95
}
sl@0
    96
sl@0
    97
#ifdef __cplusplus
sl@0
    98
}
sl@0
    99
#endif
sl@0
   100