VirtualBox

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

Last change on this file since 62477 was 62477, checked in by vboxsync, 8 years ago

(C) 2016

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