VirtualBox

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

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

The Giant CDDL Dual-License Header Change.

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