1 | /* $Id: tstDeadlock.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - deadlock detection. Will never really "work".
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | /*******************************************************************************
|
---|
24 | * Header Files *
|
---|
25 | *******************************************************************************/
|
---|
26 | #include <iprt/thread.h>
|
---|
27 | #include <iprt/critsect.h>
|
---|
28 | #include <iprt/stream.h>
|
---|
29 | #include <iprt/err.h>
|
---|
30 | #include <iprt/runtime.h>
|
---|
31 |
|
---|
32 |
|
---|
33 | /*******************************************************************************
|
---|
34 | * Global Variables *
|
---|
35 | *******************************************************************************/
|
---|
36 | static RTCRITSECT g_CritSect1;
|
---|
37 | static RTCRITSECT g_CritSect2;
|
---|
38 | static RTCRITSECT g_CritSect3;
|
---|
39 |
|
---|
40 | #define UNIT 250
|
---|
41 |
|
---|
42 | static DECLCALLBACK(int) Thread1(RTTHREAD ThreadSelf, void *pvUser)
|
---|
43 | {
|
---|
44 | RTCritSectEnter(&g_CritSect1);
|
---|
45 | RTPrintf("thread1: got 1\n");
|
---|
46 | RTThreadSleep(3*UNIT);
|
---|
47 | RTPrintf("thread1: taking 2\n");
|
---|
48 | RTCritSectEnter(&g_CritSect2);
|
---|
49 | RTPrintf("thread1: got 2!!!\n");
|
---|
50 | return VERR_DEADLOCK;
|
---|
51 | }
|
---|
52 |
|
---|
53 | static DECLCALLBACK(int) Thread2(RTTHREAD ThreadSelf, void *pvUser)
|
---|
54 | {
|
---|
55 | RTCritSectEnter(&g_CritSect2);
|
---|
56 | RTPrintf("thread2: got 2\n");
|
---|
57 | RTThreadSleep(1*UNIT);
|
---|
58 | RTPrintf("thread2: taking 3\n");
|
---|
59 | RTCritSectEnter(&g_CritSect3);
|
---|
60 | RTPrintf("thread2: got 3!!!\n");
|
---|
61 | return VERR_DEADLOCK;
|
---|
62 | }
|
---|
63 |
|
---|
64 | static DECLCALLBACK(int) Thread3(RTTHREAD ThreadSelf, void *pvUser)
|
---|
65 | {
|
---|
66 | RTCritSectEnter(&g_CritSect3);
|
---|
67 | RTPrintf("thread3: got 3\n");
|
---|
68 | RTThreadSleep(2*UNIT);
|
---|
69 | RTPrintf("thread3: taking 1\n");
|
---|
70 | RTCritSectEnter(&g_CritSect1);
|
---|
71 | RTPrintf("thread1: got 1!!!\n");
|
---|
72 | return VERR_DEADLOCK;
|
---|
73 | }
|
---|
74 |
|
---|
75 |
|
---|
76 | int main()
|
---|
77 | {
|
---|
78 | /*
|
---|
79 | * Init.
|
---|
80 | */
|
---|
81 | RTR3Init();
|
---|
82 | int rc = RTCritSectInit(&g_CritSect1);
|
---|
83 | if (RT_SUCCESS(rc))
|
---|
84 | rc = RTCritSectInit(&g_CritSect2);
|
---|
85 | if (RT_SUCCESS(rc))
|
---|
86 | rc = RTCritSectInit(&g_CritSect3);
|
---|
87 | if (RT_FAILURE(rc))
|
---|
88 | {
|
---|
89 | RTPrintf("tstDeadlock: failed to initialize critsects: %Rra\n", rc);
|
---|
90 | return 1;
|
---|
91 | }
|
---|
92 | RTCritSectEnter(&g_CritSect1);
|
---|
93 | if (g_CritSect1.Strict.ThreadOwner == NIL_RTTHREAD)
|
---|
94 | {
|
---|
95 | RTPrintf("tstDeadlock: deadlock detection is not enabled in this build\n");
|
---|
96 | return 1;
|
---|
97 | }
|
---|
98 | RTCritSectLeave(&g_CritSect1);
|
---|
99 |
|
---|
100 | /*
|
---|
101 | * Start the threads and wait for them to deadlock.
|
---|
102 | */
|
---|
103 | RTPrintf("tstDeadlock: TESTING...\n");
|
---|
104 | RTThreadYield();
|
---|
105 | rc = RTThreadCreate(NULL, Thread1, NULL, 0, RTTHREADTYPE_DEFAULT, 0, "Thread1");
|
---|
106 | if (RT_SUCCESS(rc))
|
---|
107 | rc = RTThreadCreate(NULL, Thread2, NULL, 0, RTTHREADTYPE_DEFAULT, 0, "Thread2");
|
---|
108 | if (RT_SUCCESS(rc))
|
---|
109 | rc = RTThreadCreate(NULL, Thread3, NULL, 0, RTTHREADTYPE_DEFAULT, 0, "Thread3");
|
---|
110 | if (RT_FAILURE(rc))
|
---|
111 | {
|
---|
112 | RTPrintf("tstDeadlock: failed to create threads: %Rra\n");
|
---|
113 | return 1;
|
---|
114 | }
|
---|
115 | for (;;)
|
---|
116 | RTThreadSleep(60000);
|
---|
117 |
|
---|
118 | RTPrintf("tstDeadlock: Impossible!!!\n");
|
---|
119 | return 0;
|
---|
120 | }
|
---|
121 |
|
---|