summaryrefslogtreecommitdiff
path: root/pr/tests/joinku.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/tests/joinku.c')
-rw-r--r--pr/tests/joinku.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/pr/tests/joinku.c b/pr/tests/joinku.c
index f18894cd..8278303b 100644
--- a/pr/tests/joinku.c
+++ b/pr/tests/joinku.c
@@ -10,7 +10,7 @@
** Description: Tests PR_SetMallocCountdown PR_ClearMallocCountdown functions.
**
** Modification History:
-**
+**
** 19-May-97 AGarcia - separate the four join tests into different unit test modules.
** AGarcia- Converted the test to accomodate the debug_mode flag.
** The debug mode will print all of the printfs associated with this test.
@@ -57,9 +57,9 @@ void runTest(PRThreadScope scope1, PRThreadScope scope2)
PRThread *low,*high;
/* create the low and high priority threads */
-
+
low = PR_CreateThread(PR_USER_THREAD,
- lowPriority, 0,
+ lowPriority, 0,
PR_PRIORITY_LOW,
scope1,
PR_JOINABLE_THREAD,
@@ -71,7 +71,7 @@ void runTest(PRThreadScope scope1, PRThreadScope scope2)
}
high = PR_CreateThread(PR_USER_THREAD,
- highPriority, 0,
+ highPriority, 0,
PR_PRIORITY_HIGH,
scope2,
PR_JOINABLE_THREAD,
@@ -107,7 +107,7 @@ static PRIntn PR_CALLBACK RealMain( PRIntn argc, char **argv )
test.
Usage: test_name -d
*/
-
+
PLOptStatus os;
PLOptState *opt = PL_CreateOptState(argc, argv, "d:");
while (PL_OPT_EOL != (os = PL_GetNextOpt(opt)))
@@ -133,14 +133,14 @@ static PRIntn PR_CALLBACK RealMain( PRIntn argc, char **argv )
runTest(PR_GLOBAL_THREAD, PR_LOCAL_THREAD);
- if(failed_already)
+ if(failed_already)
{
- printf("FAIL\n");
+ printf("FAIL\n");
return 1;
}
else
{
- printf("PASS\n");
+ printf("PASS\n");
return 0;
}
@@ -150,7 +150,7 @@ static PRIntn PR_CALLBACK RealMain( PRIntn argc, char **argv )
int main(int argc, char **argv)
{
PRIntn rv;
-
+
PR_STDIO_INIT();
rv = PR_Initialize(RealMain, argc, argv, 0);
return rv;