VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstDeadlock.cpp@ 8155

Last change on this file since 8155 was 8155, checked in by vboxsync, 16 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.1 KB
Line 
1/* $Id: tstDeadlock.cpp 8155 2008-04-18 15:16:47Z vboxsync $ */
2/** @file
3 * IPRT Testcase - deadlock detection. Will never really "work".
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include <iprt/thread.h>
36#include <iprt/critsect.h>
37#include <iprt/stream.h>
38#include <iprt/err.h>
39#include <iprt/runtime.h>
40
41
42/*******************************************************************************
43* Global Variables *
44*******************************************************************************/
45static RTCRITSECT g_CritSect1;
46static RTCRITSECT g_CritSect2;
47static RTCRITSECT g_CritSect3;
48
49#define UNIT 250
50
51static DECLCALLBACK(int) Thread1(RTTHREAD ThreadSelf, void *pvUser)
52{
53 RTCritSectEnter(&g_CritSect1);
54 RTPrintf("thread1: got 1\n");
55 RTThreadSleep(3*UNIT);
56 RTPrintf("thread1: taking 2\n");
57 RTCritSectEnter(&g_CritSect2);
58 RTPrintf("thread1: got 2!!!\n");
59 return VERR_DEADLOCK;
60}
61
62static DECLCALLBACK(int) Thread2(RTTHREAD ThreadSelf, void *pvUser)
63{
64 RTCritSectEnter(&g_CritSect2);
65 RTPrintf("thread2: got 2\n");
66 RTThreadSleep(1*UNIT);
67 RTPrintf("thread2: taking 3\n");
68 RTCritSectEnter(&g_CritSect3);
69 RTPrintf("thread2: got 3!!!\n");
70 return VERR_DEADLOCK;
71}
72
73static DECLCALLBACK(int) Thread3(RTTHREAD ThreadSelf, void *pvUser)
74{
75 RTCritSectEnter(&g_CritSect3);
76 RTPrintf("thread3: got 3\n");
77 RTThreadSleep(2*UNIT);
78 RTPrintf("thread3: taking 1\n");
79 RTCritSectEnter(&g_CritSect1);
80 RTPrintf("thread1: got 1!!!\n");
81 return VERR_DEADLOCK;
82}
83
84
85int main()
86{
87 /*
88 * Init.
89 */
90 RTR3Init();
91 int rc = RTCritSectInit(&g_CritSect1);
92 if (RT_SUCCESS(rc))
93 rc = RTCritSectInit(&g_CritSect2);
94 if (RT_SUCCESS(rc))
95 rc = RTCritSectInit(&g_CritSect3);
96 if (RT_FAILURE(rc))
97 {
98 RTPrintf("tstDeadlock: failed to initialize critsects: %Rra\n", rc);
99 return 1;
100 }
101 RTCritSectEnter(&g_CritSect1);
102 if (g_CritSect1.Strict.ThreadOwner == NIL_RTTHREAD)
103 {
104 RTPrintf("tstDeadlock: deadlock detection is not enabled in this build\n");
105 return 1;
106 }
107 RTCritSectLeave(&g_CritSect1);
108
109 /*
110 * Start the threads and wait for them to deadlock.
111 */
112 RTPrintf("tstDeadlock: TESTING...\n");
113 RTThreadYield();
114 rc = RTThreadCreate(NULL, Thread1, NULL, 0, RTTHREADTYPE_DEFAULT, 0, "Thread1");
115 if (RT_SUCCESS(rc))
116 rc = RTThreadCreate(NULL, Thread2, NULL, 0, RTTHREADTYPE_DEFAULT, 0, "Thread2");
117 if (RT_SUCCESS(rc))
118 rc = RTThreadCreate(NULL, Thread3, NULL, 0, RTTHREADTYPE_DEFAULT, 0, "Thread3");
119 if (RT_FAILURE(rc))
120 {
121 RTPrintf("tstDeadlock: failed to create threads: %Rra\n");
122 return 1;
123 }
124 for (;;)
125 RTThreadSleep(60000);
126
127 RTPrintf("tstDeadlock: Impossible!!!\n");
128 return 0;
129}
130
Note: See TracBrowser for help on using the repository browser.

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