VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTProcWait.cpp@ 3125

Last change on this file since 3125 was 2981, checked in by vboxsync, 17 years ago

InnoTek -> innotek: all the headers and comments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1/* $Id: tstRTProcWait.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime Testcase - RTProcWait.
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/runtime.h>
27#include <iprt/process.h>
28#include <iprt/thread.h>
29#include <iprt/stream.h>
30#include <iprt/semaphore.h>
31#include <iprt/err.h>
32#include <iprt/string.h>
33
34
35
36
37typedef struct SpawnerArgs
38{
39 RTPROCESS Process;
40 const char *pszExe;
41} SPAWNERARGS, *PSPAWNERARGS;
42
43
44DECLCALLBACK(int) SpawnerThread(RTTHREAD Thread, void *pvUser)
45{
46 PSPAWNERARGS pArgs = (PSPAWNERARGS)pvUser;
47 pArgs->Process = NIL_RTPROCESS;
48 const char *apszArgs[3] = { pArgs->pszExe, "child", NULL };
49 return RTProcCreate(apszArgs[0], apszArgs, NULL, 0, &pArgs->Process);
50}
51
52
53int main(int argc, char **argv)
54{
55 RTR3Init();
56 if (argc == 2 && !strcmp(argv[1], "child"))
57 return 42;
58
59 RTPrintf("tstRTWait: spawning a child in a separate thread and waits for it in the main thread...\n");
60 RTTHREAD Thread;
61 SPAWNERARGS Args = { NIL_RTPROCESS, argv[0] };
62 int rc = RTThreadCreate(&Thread, SpawnerThread, &Args, 0, RTTHREADTYPE_DEFAULT, RTTHREADFLAGS_WAITABLE, "SPAWNER");
63 if (RT_SUCCESS(rc))
64 {
65 /* Wait for it to complete. */
66 int rc2;
67 int rc = RTThreadWait(Thread, RT_INDEFINITE_WAIT, &rc2);
68 if (RT_SUCCESS(rc))
69 rc = rc2;
70 if (RT_SUCCESS(rc))
71 {
72 /* wait for the process to complete */
73 RTPROCSTATUS Status;
74 rc = RTProcWait(Args.Process, 0, &Status);
75 if (RT_SUCCESS(rc))
76 {
77 if ( Status.enmReason == RTPROCEXITREASON_NORMAL
78 && Status.iStatus == 42)
79 RTPrintf("tstRTWait: Success!\n");
80 else
81 {
82 rc = VERR_GENERAL_FAILURE;
83 if (Status.enmReason != RTPROCEXITREASON_NORMAL)
84 RTPrintf("tstRTWait: Expected exit reason RTPROCEXITREASON_NORMAL, got %d.\n", Status.enmReason);
85 else
86 RTPrintf("tstRTWait: Expected exit status 42, got %d.\n", Status.iStatus);
87 }
88 }
89 else
90 RTPrintf("tstRTWait: RTProcWait failed with rc=%Vrc!\n", rc);
91 }
92 else
93 RTPrintf("tstRTWait: RTThreadWait or SpawnerThread failed with rc=%Vrc!\n", rc);
94 }
95 else
96 RTPrintf("tstRTWait: RTThreadCreate failed with rc=%Vrc!\n", rc);
97
98 return RT_SUCCESS(rc) ? 0 : 1;
99}
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