~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/src/bthreads/btsem.c

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
 
2
/* 
 
3
 * The contents of this file are subject to the Mozilla Public
 
4
 * License Version 1.1 (the "License"); you may not use this file
 
5
 * except in compliance with the License. You may obtain a copy of
 
6
 * the License at http://www.mozilla.org/MPL/
 
7
 * 
 
8
 * Software distributed under the License is distributed on an "AS
 
9
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
10
 * implied. See the License for the specific language governing
 
11
 * rights and limitations under the License.
 
12
 * 
 
13
 * The Original Code is the Netscape Portable Runtime (NSPR).
 
14
 * 
 
15
 * The Initial Developer of the Original Code is Netscape
 
16
 * Communications Corporation.  Portions created by Netscape are 
 
17
 * Copyright (C) 1998-2000 Netscape Communications Corporation.  All
 
18
 * Rights Reserved.
 
19
 * 
 
20
 * Contributor(s):
 
21
 * 
 
22
 * Alternatively, the contents of this file may be used under the
 
23
 * terms of the GNU General Public License Version 2 or later (the
 
24
 * "GPL"), in which case the provisions of the GPL are applicable 
 
25
 * instead of those above.  If you wish to allow use of your 
 
26
 * version of this file only under the terms of the GPL and not to
 
27
 * allow others to use your version of this file under the MPL,
 
28
 * indicate your decision by deleting the provisions above and
 
29
 * replace them with the notice and other provisions required by
 
30
 * the GPL.  If you do not delete the provisions above, a recipient
 
31
 * may use your version of this file under either the MPL or the
 
32
 * GPL.
 
33
 */
 
34
 
 
35
#include <kernel/OS.h>
 
36
 
 
37
#include "primpl.h"
 
38
 
 
39
/*
 
40
** Create a new semaphore object.
 
41
*/
 
42
PR_IMPLEMENT(PRSemaphore*)
 
43
    PR_NewSem (PRUintn value)
 
44
{
 
45
        PRSemaphore *semaphore;
 
46
 
 
47
        if (!_pr_initialized) _PR_ImplicitInitialization();
 
48
 
 
49
        semaphore = PR_NEWZAP(PRSemaphore);
 
50
        if (NULL != semaphore) {
 
51
                if ((semaphore->sem = create_sem(value, "nspr_sem")) < B_NO_ERROR)
 
52
                        return NULL;
 
53
                else 
 
54
                        return semaphore;
 
55
        }
 
56
        return NULL;
 
57
}
 
58
 
 
59
/*
 
60
** Destroy the given semaphore object.
 
61
**
 
62
*/
 
63
PR_IMPLEMENT(void)
 
64
    PR_DestroySem (PRSemaphore *sem)
 
65
{
 
66
        status_t result;
 
67
 
 
68
        PR_ASSERT(sem != NULL);
 
69
        result = delete_sem(sem->sem);
 
70
        PR_ASSERT(result == B_NO_ERROR);
 
71
        PR_DELETE(sem);
 
72
 
73
 
 
74
/*
 
75
** Wait on a Semaphore.
 
76
** 
 
77
** This routine allows a calling thread to wait or proceed depending upon
 
78
** the state of the semahore sem. The thread can proceed only if the
 
79
** counter value of the semaphore sem is currently greater than 0. If the
 
80
** value of semaphore sem is positive, it is decremented by one and the
 
81
** routine returns immediately allowing the calling thread to continue. If
 
82
** the value of semaphore sem is 0, the calling thread blocks awaiting the
 
83
** semaphore to be released by another thread.
 
84
** 
 
85
** This routine can return PR_PENDING_INTERRUPT if the waiting thread 
 
86
** has been interrupted.
 
87
*/
 
88
PR_IMPLEMENT(PRStatus)
 
89
    PR_WaitSem (PRSemaphore *sem)
 
90
{
 
91
        PR_ASSERT(sem != NULL);
 
92
        if (acquire_sem(sem->sem) == B_NO_ERROR)
 
93
                return PR_SUCCESS;
 
94
        else
 
95
                return PR_FAILURE;
 
96
}
 
97
 
 
98
/*
 
99
** This routine increments the counter value of the semaphore. If other
 
100
** threads are blocked for the semaphore, then the scheduler will
 
101
** determine which ONE thread will be unblocked.
 
102
*/
 
103
PR_IMPLEMENT(void)
 
104
    PR_PostSem (PRSemaphore *sem)
 
105
{
 
106
        status_t result;
 
107
 
 
108
        PR_ASSERT(sem != NULL);
 
109
        result = release_sem(sem->sem);
 
110
        PR_ASSERT(result == B_NO_ERROR);
 
111
}
 
112
 
 
113
/*
 
114
** Returns the value of the semaphore referenced by sem without affecting
 
115
** the state of the semaphore.  The value represents the semaphore value
 
116
** at the time of the call, but may not be the actual value when the
 
117
** caller inspects it.
 
118
*/
 
119
PR_IMPLEMENT(PRUintn)
 
120
    PR_GetValueSem (PRSemaphore *sem)
 
121
{
 
122
        sem_info        info;
 
123
 
 
124
        PR_ASSERT(sem != NULL);
 
125
        get_sem_info(sem->sem, &info);
 
126
        return info.count;
 
127
}