summaryrefslogtreecommitdiffstats
path: root/nsprpub/pr/tests/monref.c
blob: 3e2ae637bf798085387bdb2f6d1553daab5ba747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/*
 * This test program demonstrates that PR_ExitMonitor needs to add a
 * reference to the PRMonitor object before unlocking the internal
 * mutex.
 */

#include "prlog.h"
#include "prmon.h"
#include "prthread.h"

#include <stdio.h>
#include <stdlib.h>

/* Protected by the PRMonitor 'mon' in the main function. */
static PRBool done = PR_FALSE;

static void ThreadFunc(void *arg)
{
    PRMonitor *mon = (PRMonitor *)arg;
    PRStatus rv;

    PR_EnterMonitor(mon);
    done = PR_TRUE;
    rv = PR_Notify(mon);
    PR_ASSERT(rv == PR_SUCCESS);
    rv = PR_ExitMonitor(mon);
    PR_ASSERT(rv == PR_SUCCESS);
}

int main()
{
    PRMonitor *mon;
    PRThread *thread;
    PRStatus rv;

    mon = PR_NewMonitor();
    if (!mon) {
        fprintf(stderr, "PR_NewMonitor failed\n");
        exit(1);
    }

    thread = PR_CreateThread(PR_USER_THREAD, ThreadFunc, mon,
                             PR_PRIORITY_NORMAL, PR_GLOBAL_THREAD,
                             PR_JOINABLE_THREAD, 0);
    if (!thread) {
        fprintf(stderr, "PR_CreateThread failed\n");
        exit(1);
    }

    PR_EnterMonitor(mon);
    while (!done) {
        rv = PR_Wait(mon, PR_INTERVAL_NO_TIMEOUT);
        PR_ASSERT(rv == PR_SUCCESS);
    }
    rv = PR_ExitMonitor(mon);
    PR_ASSERT(rv == PR_SUCCESS);

    /*
     * Do you agree it should be safe to destroy 'mon' now?
     * See bug 844784 comment 27.
     */
    PR_DestroyMonitor(mon);

    rv = PR_JoinThread(thread);
    PR_ASSERT(rv == PR_SUCCESS);

    printf("PASS\n");
    return 0;
}