cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync/* $Id$ */
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync/** @file
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * DTracing VBox - return to ring-3 aggregation test \#1.
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync */
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync/*
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * Copyright (C) 2012-2016 Oracle Corporation
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync *
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * available from http://www.virtualbox.org. This file is free software;
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * you can redistribute it and/or modify it under the terms of the GNU
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * General Public License (GPL) as published by the Free Software
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync */
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync#pragma D option quiet
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsyncvboxvmm:::r0-vmm-return-to-ring3-hm
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync{
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync @g_aHmRcs[args[2]] = count();
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync}
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsyncvboxvmm:::r0-vmm-return-to-ring3-rc
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync{
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync @g_aRawRcs[args[2]] = count();
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync}
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsyncEND
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync{
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync printa(" rcHm=%04d %@8u times\n", @g_aHmRcs);
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync printa(" rcRaw=%04d %@8u times\n", @g_aRawRcs);
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync}
cc583cfd46f2d3a31a9d38994e947f4ccb0962f8vboxsync