/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the Netscape Portable Runtime (NSPR).
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998-2000
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/***********************************************************************
** 1996 - Netscape Communications Corporation
**
** Name: cvar.c
**
** Description: Tests Condition Variable Operations
**
** Modification History:
** 13-May-97 AGarcia- Converted the test to accomodate the debug_mode flag.
** The debug mode will print all of the printfs associated with this test.
** The regress mode will be the default mode. Since the regress tool limits
** the output to a one line status:PASS or FAIL,all of the printf statements
** have been handled with an if (debug_mode) statement.
** 04-June-97 AGarcia removed the Test_Result function. Regress tool has been updated to
** recognize the return code from tha main program.
** 12-June-97 Revert to return code 0 and 1.
***********************************************************************/
/***********************************************************************
** Includes
***********************************************************************/
#include "nspr.h"
/* Used to get the command line option */
#include "plgetopt.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef XP_MAC
#include "prlog.h"
extern void SetupMacPrintfLog(char *logFile);
#endif
typedef struct {
int startIdx;
int numFull;
} CircBuf;
/*
** NewCB creates and initializes a new circular buffer.
*/
{
return (NULL);
return (cbp);
}
/*
** DeleteCB frees a circular buffer.
*/
{
}
/*
** PutCBData puts new data on the queue. If the queue is full, it waits
** until there is room.
*/
{
/* wait while the buffer is full */
/* let a waiting reader know that there is data */
}
/*
** GetCBData gets the oldest data on the queue. If the queue is empty, it waits
** until new data appears.
*/
{
void *data;
/* wait while the buffer is empty */
/* let a waiting writer know that there is room */
return (data);
}
/************************************************************************/
static int alive;
{
PRInt32 i, n;
void *data;
n = count / 2;
for (i = 0; i < n; i++) {
if ((int)data != i)
}
--alive;
}
{
PRInt32 i, n;
n = count / 2;
for (i = 0; i < n; i++)
--alive;
}
{
alive = 2;
0);
0);
/* Wait for both of the threads to exit */
while (alive) {
}
}
static void CondWaitContextSwitchUU(void)
{
}
static void CondWaitContextSwitchUK(void)
{
}
static void CondWaitContextSwitchKK(void)
{
}
/************************************************************************/
{
double d;
start = PR_IntervalNow();
(*func)();
stop = PR_IntervalNow();
}
{
/* The command line argument: -d is used to determine if the test is being run
in debug mode. The regress tool requires only one line output:PASS or FAIL.
All of the printfs associated with this test has been handled with a if (debug_mode)
test.
Usage: test_name [-d] [-c n]
*/
{
if (PL_OPT_BAD == os) continue;
{
case 'd': /* debug mode */
debug_mode = 1;
break;
case 'c': /* loop count */
break;
default:
break;
}
}
#ifdef XP_MAC
SetupMacPrintfLog("cvar.log");
debug_mode = 1;
#endif
mon = PR_NewMonitor();
if(failed)
return 1;
else
return 0;
}
{
return rv;
} /* main */