VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTThreadExecutionTime.cpp@ 38636

Last change on this file since 38636 was 34629, checked in by vboxsync, 14 years ago

no RTThreadPoke() on Windows

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1/* $Id: tstRTThreadExecutionTime.cpp 34629 2010-12-02 17:09:09Z vboxsync $ */
2/** @file
3 * IPRT Testcase - RTThreadGetExecution.
4 */
5
6/*
7 * Copyright (C) 2010 Oracle Corporation
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* Header Files *
29*******************************************************************************/
30#include <iprt/thread.h>
31
32#include <iprt/asm.h>
33#include <iprt/test.h>
34#include <iprt/string.h>
35#include <iprt/stream.h>
36#include <iprt/time.h>
37
38
39/*******************************************************************************
40* Global Variables *
41*******************************************************************************/
42static RTTEST g_hTest;
43static volatile uint64_t g_kernel, g_user;
44
45
46static DECLCALLBACK(int) testThread(RTTHREAD hSelf, void *pvUser)
47{
48 uint64_t u64Now = RTTimeMilliTS();
49 uint64_t kernel, kernelStart, user, userStart;
50 RTThreadGetExecutionTimeMilli(&kernelStart, &userStart);
51 while (RTTimeMilliTS() < u64Now + 1000)
52 ;
53 RTThreadGetExecutionTimeMilli(&kernel, &user);
54 RTPrintf("kernel = %4lldms, user = %4lldms\n", kernel - kernelStart, user - userStart);
55 ASMAtomicAddU64(&g_kernel, kernel);
56 ASMAtomicAddU64(&g_user, user);
57
58 return VINF_SUCCESS;
59}
60
61
62static void test1(void)
63{
64 RTTestSub(g_hTest, "Interrupt RTThreadSleep");
65 RTTHREAD hThread[16];
66 RTMSINTERVAL msWait = 1000;
67 for (unsigned i = 0; i < RT_ELEMENTS(hThread); i++)
68 {
69 RTTESTI_CHECK_RC_RETV(RTThreadCreate(&hThread[i], testThread, NULL, 0, RTTHREADTYPE_DEFAULT,
70 RTTHREADFLAGS_WAITABLE, "test"), VINF_SUCCESS);
71 }
72 RTThreadSleep(500);
73 RTPrintf("Waiting for %dms ...\n", msWait);
74 RTThreadSleep(msWait);
75 for (unsigned i = 0; i < RT_ELEMENTS(hThread); i++)
76 RTTESTI_CHECK_RC(RTThreadWait(hThread[i], RT_INDEFINITE_WAIT, NULL), VINF_SUCCESS);
77
78 RTPrintf("sum kernel = %lldms, sum user = %lldms\n", g_kernel, g_user);
79}
80
81
82int main()
83{
84 RTEXITCODE rcExit = RTTestInitAndCreate("tstRTThreadExecutionTime", &g_hTest);
85 if (rcExit != RTEXITCODE_SUCCESS)
86 return rcExit;
87 test1();
88
89 return RTTestSummaryAndDestroy(g_hTest);
90}
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