VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/xpcom/tests/TestThreads.cpp@ 101982

Last change on this file since 101982 was 101982, checked in by vboxsync, 18 months ago

libs/xpcom: Convert PR_Sleep to RTThreadSleep/RTThreadYield, bugref:10545

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.5 KB
Line 
1/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
9 *
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
14 *
15 * The Original Code is mozilla.org code.
16 *
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s):
23 * Pierre Phaneuf <pp@ludusdesign.com>
24 *
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
36 *
37 * ***** END LICENSE BLOCK ***** */
38
39#include "nsIThread.h"
40#include "nsIRunnable.h"
41#include <stdio.h>
42#include <stdlib.h>
43#include "nsCOMPtr.h"
44#include "nsIServiceManager.h"
45
46#include <iprt/thread.h>
47
48class nsRunner : public nsIRunnable {
49public:
50 NS_DECL_ISUPPORTS
51
52 NS_IMETHOD Run() {
53 nsCOMPtr<nsIThread> thread;
54 nsresult rv = nsIThread::GetCurrent(getter_AddRefs(thread));
55 if (NS_FAILED(rv)) {
56 printf("failed to get current thread\n");
57 return rv;
58 }
59 printf("running %d on thread %p\n", mNum, (void *)thread.get());
60
61 // if we don't do something slow, we'll never see the other
62 // worker threads run
63 RTThreadSleep(100);
64
65 return rv;
66 }
67
68 nsRunner(int num) : mNum(num) {
69 }
70
71protected:
72 int mNum;
73};
74
75NS_IMPL_THREADSAFE_ISUPPORTS1(nsRunner, nsIRunnable)
76
77nsresult
78TestThreads()
79{
80 nsresult rv;
81
82 nsCOMPtr<nsIThread> runner;
83 rv = NS_NewThread(getter_AddRefs(runner), new nsRunner(0), 0, PR_JOINABLE_THREAD);
84 if (NS_FAILED(rv)) {
85 printf("failed to create thread\n");
86 return rv;
87 }
88
89 nsCOMPtr<nsIThread> thread;
90 rv = nsIThread::GetCurrent(getter_AddRefs(thread));
91 if (NS_FAILED(rv)) {
92 printf("failed to get current thread\n");
93 return rv;
94 }
95
96 PRThreadScope scope;
97 rv = runner->GetScope(&scope);
98 if (NS_FAILED(rv)) {
99 printf("runner already exited\n");
100 }
101
102 rv = runner->Join(); // wait for the runner to die before quitting
103 if (NS_FAILED(rv)) {
104 printf("join failed\n");
105 }
106
107 rv = runner->GetScope(&scope); // this should fail after Join
108 if (NS_SUCCEEDED(rv)) {
109 printf("get scope failed\n");
110 }
111
112 rv = runner->Interrupt(); // this should fail after Join
113 if (NS_SUCCEEDED(rv)) {
114 printf("interrupt failed\n");
115 }
116
117 ////////////////////////////////////////////////////////////////////////////
118 // try an unjoinable thread
119 rv = NS_NewThread(getter_AddRefs(runner), new nsRunner(1));
120 if (NS_FAILED(rv)) {
121 printf("failed to create thread\n");
122 return rv;
123 }
124
125 rv = runner->Join(); // wait for the runner to die before quitting
126 if (NS_SUCCEEDED(rv)) {
127 printf("shouldn't have been able to join an unjoinable thread\n");
128 }
129
130 RTThreadSleep(100); // hopefully the runner will quit here
131
132 return NS_OK;
133}
134
135int
136main(int argc, char** argv)
137{
138 int retval = 0;
139 nsresult rv;
140
141 rv = NS_InitXPCOM2(nsnull, nsnull, nsnull);
142 if (NS_FAILED(rv)) return -1;
143
144 rv = TestThreads();
145 if (NS_FAILED(rv)) return -1;
146
147 rv = NS_ShutdownXPCOM(nsnull);
148 if (NS_FAILED(rv)) return -1;
149 return retval;
150}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette